aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-05-22 06:50:05 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-05-22 06:50:05 +0000
commit267ccbc261658a9ed1f989671346a0fde7bd26e8 (patch)
treed1758e960682de69ce86c3d569bcaacc0ba33af2
parentd753b56d777a6ec1e62373dde8c398ae070a556e (diff)
Fix fallout from r131838.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131844 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/available-externally-suppress.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/available-externally-suppress.c b/test/CodeGen/available-externally-suppress.c
index 747d3cd357..46b6e742f3 100644
--- a/test/CodeGen/available-externally-suppress.c
+++ b/test/CodeGen/available-externally-suppress.c
@@ -11,17 +11,17 @@ void test() {
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);
}