aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/available-externally-suppress.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/available-externally-suppress.c')
-rw-r--r--test/CodeGen/available-externally-suppress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/available-externally-suppress.c b/test/CodeGen/available-externally-suppress.c
index 46b6e742f35e..390d2017884a 100644
--- a/test/CodeGen/available-externally-suppress.c
+++ b/test/CodeGen/available-externally-suppress.c
@@ -1,11 +1,11 @@
-// RUN: %clang_cc1 -emit-llvm -o - -O0 -triple x86_64-apple-darwin10 %s | FileCheck %s
+// RUN: %clang_cc1 -emit-llvm -o - -triple x86_64-apple-darwin10 %s | FileCheck %s
// Ensure that we don't emit available_externally functions at -O0.
int x;
inline void f0(int y) { x = y; }
-// CHECK: define void @test()
+// CHECK-LABEL: define void @test()
// CHECK: declare void @f0(i32)
void test() {
f0(17);