bolt/deps/llvm-18.1.8/llvm/test/Transforms/NewGVN/eliminate-callsite-inline.ll

18 lines
286 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: opt -passes=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 willreturn }