mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-02 01:06:25 +00:00
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 }
|