diff options
Diffstat (limited to 'clang/test/CodeGenCXX/exceptions-cxx-ehsc.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/exceptions-cxx-ehsc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/exceptions-cxx-ehsc.cpp b/clang/test/CodeGenCXX/exceptions-cxx-ehsc.cpp index c660d145393..e98542e3c18 100644 --- a/clang/test/CodeGenCXX/exceptions-cxx-ehsc.cpp +++ b/clang/test/CodeGenCXX/exceptions-cxx-ehsc.cpp @@ -11,7 +11,7 @@ void caller() { may_throw(); } } -// CHECK-LABEL: define void @"\01?caller@test1@@YAXXZ"( +// CHECK-LABEL: define dso_local void @"\01?caller@test1@@YAXXZ"( // CHECK: call void @never_throws( // CHECK: invoke void @"\01?may_throw@test1@@YAXXZ"( @@ -26,6 +26,6 @@ void caller() { may_throw(); } } -// CHECK-LABEL: define void @"\01?caller@test2@@YAXXZ"( +// CHECK-LABEL: define dso_local void @"\01?caller@test2@@YAXXZ"( // CHECK: invoke void @throws_int( // CHECK: invoke void @"\01?may_throw@test2@@YAXXZ"( |