You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
269 B
18 lines
269 B
7 months ago
|
; RUN: opt -inline -newgvn -S < %s | FileCheck %s
|
||
|
|
||
|
; CHECK-LABEL: @f2()
|
||
|
; CHECK-NEXT: ret void
|
||
|
|
||
|
define void @f2() {
|
||
|
call void @f1()
|
||
|
call void @f1()
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
define internal void @f1() #1 {
|
||
|
entry:
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
attributes #1 = { noinline nounwind readnone }
|