summaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/StripDeadPrototypes/basic.ll
blob: fd47041593370304a1cc9e5e5136d676183f001c (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt -S -passes=strip-dead-prototypes < %s | FileCheck %s

; CHECK: declare i32 @f
declare i32 @f()
; CHECK-NOT: declare i32 @g
declare i32 @g()

define i32 @foo() {
  %call = call i32 @f()
  ret i32 %call
}