Fix fallout from r131838.

llvm-svn: 131844
This commit is contained in:
Nick Lewycky 2011-05-22 06:50:05 +00:00
parent ef8cf6d421
commit 2e83c4c4c3
1 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ inline int __attribute__((always_inline)) f1(int x) {
// CHECK: @test1
int test1(int x) {
// CHECK: br i1
// CHECK-NOT: call
// CHECK-NOT: call {{.*}} @f1
// CHECK: ret i32
return f1(x);
}