[cfe-commits] r131844 - /cfe/trunk/test/CodeGen/available-externally-suppress.c
Nick Lewycky
nicholas at mxc.ca
Sat May 21 23:50:05 PDT 2011
Author: nicholas
Date: Sun May 22 01:50:05 2011
New Revision: 131844
URL: http://llvm.org/viewvc/llvm-project?rev=131844&view=rev
Log:
Fix fallout from r131838.
Modified:
cfe/trunk/test/CodeGen/available-externally-suppress.c
Modified: cfe/trunk/test/CodeGen/available-externally-suppress.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/available-externally-suppress.c?rev=131844&r1=131843&r2=131844&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/available-externally-suppress.c (original)
+++ cfe/trunk/test/CodeGen/available-externally-suppress.c Sun May 22 01:50:05 2011
@@ -11,17 +11,17 @@
f0(17);
}
-inline int __attribute__((always_inline)) f1(int x) {
+inline int __attribute__((always_inline)) f1(int x) {
int blarg = 0;
for (int i = 0; i < x; ++i)
blarg = blarg + x * i;
- return blarg;
+ return blarg;
}
// CHECK: @test1
-int test1(int x) {
+int test1(int x) {
// CHECK: br i1
- // CHECK-NOT: call
+ // CHECK-NOT: call {{.*}} @f1
// CHECK: ret i32
- return f1(x);
+ return f1(x);
}
More information about the cfe-commits
mailing list