diff options
Diffstat (limited to 'clang/test/CodeGen/pr9614.c')
-rw-r--r-- | clang/test/CodeGen/pr9614.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/test/CodeGen/pr9614.c b/clang/test/CodeGen/pr9614.c index e761bec3f91..8c767766832 100644 --- a/clang/test/CodeGen/pr9614.c +++ b/clang/test/CodeGen/pr9614.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -emit-llvm %s -O1 -o - | FileCheck %s extern void foo_alias (void) __asm ("foo"); inline void foo (void) { @@ -14,8 +14,7 @@ void f(void) { } // CHECK: define void @f() -// CHECK-NEXT: entry: -// CHECK-NEXT: call void @foo() +// CHECK: call void @foo() // CHECK-NEXT: call void @bar() // CHECK-NEXT: ret void |