2022-12-07 22:22:08 +03:00

15 lines
213 B
LLVM

; RUN: opt -S -passes=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
}