f32dbaf0b2
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
15 lines
206 B
LLVM
15 lines
206 B
LLVM
; 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
|
|
}
|
|
|