blob: 1a526ffd50a621c2a9c1882bd4d8ee75bdf803c2 [file] [log] [blame]
Eric Christophercee313d2019-04-17 04:52:47 +00001; RUN: opt -S -mergefunc < %s | FileCheck %s
2
3define void @foo(i32 %x) {
4; CHECK-LABEL: @foo(
5; CHECK-NOT: call
6 ret void
7}
8
9define void @bar(i32 %x) {
10; CHECK-LABEL: @bar(
11; CHECK-NOT: call
12 ret void
13}
14