mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 08:26:29 +00:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
19 lines
286 B
LLVM
19 lines
286 B
LLVM
; RUN: opt -inline -newgvn -S < %s | FileCheck %s
|
|
|
|
; CHECK-LABEL: @f2()
|
|
; CHECK-NEXT: ret void
|
|
; CHECK-NOT: @f1
|
|
|
|
define void @f2() {
|
|
call void @f1()
|
|
call void @f1()
|
|
ret void
|
|
}
|
|
|
|
define internal void @f1() #1 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
attributes #1 = { noinline nounwind readnone }
|