diff options
Diffstat (limited to 'clang/test/CodeGenCXX/exceptions-cxx-new.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/exceptions-cxx-new.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/exceptions-cxx-new.cpp b/clang/test/CodeGenCXX/exceptions-cxx-new.cpp index 9836da8e540..3a8ce7d553b 100644 --- a/clang/test/CodeGenCXX/exceptions-cxx-new.cpp +++ b/clang/test/CodeGenCXX/exceptions-cxx-new.cpp @@ -12,7 +12,7 @@ void test_catch() { } } -// CHECK-LABEL: define void @"\01?test_catch@@YAXXZ"( +// CHECK-LABEL: define dso_local void @"\01?test_catch@@YAXXZ"( // CHECK: invoke i32 @"\01?f@@YAHH@Z"(i32 1) // CHECK: to label %[[NORMAL:.*]] unwind label %[[CATCHSWITCH:.*]] @@ -50,7 +50,7 @@ void test_cleanup() { f(1); } -// CHECK-LABEL: define {{.*}} @"\01?test_cleanup@@YAXXZ"( +// CHECK-LABEL: define dso_local {{.*}} @"\01?test_cleanup@@YAXXZ"( // CHECK: invoke i32 @"\01?f@@YAHH@Z"(i32 1) // CHECK: to label %[[LEAVE_FUNC:.*]] unwind label %[[CLEANUP:.*]] |