8e12397d70
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
15 lines
237 B
LLVM
15 lines
237 B
LLVM
; RUN: opt -S < %s -deadargelim | FileCheck %s
|
|
|
|
$f = comdat any
|
|
|
|
define void @f() comdat {
|
|
call void @g(i32 0)
|
|
ret void
|
|
}
|
|
|
|
define internal void @g(i32 %dead) comdat($f) {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: define internal void @g() comdat($f) {
|