diff options
Diffstat (limited to 'clang/test/CodeGenCXX/ms-eh-personality.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/ms-eh-personality.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/ms-eh-personality.cpp b/clang/test/CodeGenCXX/ms-eh-personality.cpp index 592ab69efaf..36661b72703 100644 --- a/clang/test/CodeGenCXX/ms-eh-personality.cpp +++ b/clang/test/CodeGenCXX/ms-eh-personality.cpp @@ -3,9 +3,9 @@ // RUN: %clang_cc1 -triple x86_64-windows-msvc -fexceptions -fcxx-exceptions -fseh-exceptions %s -emit-llvm -o - | FileCheck %s --check-prefix=MSVC // RUN: %clang_cc1 -triple x86_64-windows-msvc -fexceptions -fcxx-exceptions -fdwarf-exceptions %s -emit-llvm -o - | FileCheck %s --check-prefix=DWARF -// MSVC: define void @f(){{.*}}@__CxxFrameHandler3 -// SJLJ: define void @f(){{.*}}@__gxx_personality_sj0 -// DWARF: define void @f(){{.*}}@__gxx_personality_v0 +// MSVC: define dso_local void @f(){{.*}}@__CxxFrameHandler3 +// SJLJ: define dso_local void @f(){{.*}}@__gxx_personality_sj0 +// DWARF: define dso_local void @f(){{.*}}@__gxx_personality_v0 struct Cleanup { Cleanup(); |