diff options
Diffstat (limited to 'clang/test/CodeGenCXX/noexcept.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/noexcept.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/noexcept.cpp b/clang/test/CodeGenCXX/noexcept.cpp index 4ee149ed8dd..dd4cfda1d89 100644 --- a/clang/test/CodeGenCXX/noexcept.cpp +++ b/clang/test/CodeGenCXX/noexcept.cpp @@ -16,7 +16,7 @@ namespace test0 { foo(); } } -// CHECK: define void @_ZN5test04testEv() +// CHECK-LABEL: define void @_ZN5test04testEv() // CHECK: [[EXN:%.*]] = alloca i8* // This goes to the terminate lpad. // CHECK: invoke void @_ZN5test01AC1Ev( @@ -43,7 +43,7 @@ namespace test0 { // CHECK-NEXT: call void @__clang_call_terminate(i8* [[T0]]) // CHECK-NEXT: unreachable -// CHECK: define linkonce_odr hidden void @__clang_call_terminate( +// CHECK-LABEL: define linkonce_odr hidden void @__clang_call_terminate( // CHECK: call i8* @__cxa_begin_catch( // CHECK-NEXT: call void @_ZSt9terminatev() // CHECK-NEXT: unreachable |