llvm-for-llvmta/test/Transforms/MergeFunc/too-small.ll

15 lines
206 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; RUN: opt -S -mergefunc < %s | FileCheck %s
define void @foo(i32 %x) {
; CHECK-LABEL: @foo(
; CHECK-NOT: call
ret void
}
define void @bar(i32 %x) {
; CHECK-LABEL: @bar(
; CHECK-NOT: call
ret void
}