Skip to content
Snippets Groups Projects
Commit f47928dd authored by Reid Kleckner's avatar Reid Kleckner
Browse files

[EH] Use __CxxFrameHandler3 for C++ EH in MS environments

Fixes regression introduced by r319297. MSVC environments still use SEH
unwind opcodes but they should use the Microsoft C++ EH personality, not
the mingw one.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@319363 91177308-0d34-0410-b5e6-96231b3b80d8
parent 89c18a7f
No related branches found
No related tags found
No related merge requests found
...@@ -205,12 +205,9 @@ const EHPersonality &EHPersonality::get(CodeGenModule &CGM, ...@@ -205,12 +205,9 @@ const EHPersonality &EHPersonality::get(CodeGenModule &CGM,
if (T.isWindowsMSVCEnvironment() && !L.ObjC1) { if (T.isWindowsMSVCEnvironment() && !L.ObjC1) {
if (L.SjLjExceptions) if (L.SjLjExceptions)
return EHPersonality::GNU_CPlusPlus_SJLJ; return EHPersonality::GNU_CPlusPlus_SJLJ;
if (L.SEHExceptions)
return EHPersonality::GNU_CPlusPlus_SEH;
if (L.DWARFExceptions) if (L.DWARFExceptions)
return EHPersonality::GNU_CPlusPlus; return EHPersonality::GNU_CPlusPlus;
else return EHPersonality::MSVC_CxxFrameHandler3;
return EHPersonality::MSVC_CxxFrameHandler3;
} }
if (L.CPlusPlus && L.ObjC1) if (L.CPlusPlus && L.ObjC1)
......
// RUN: %clang_cc1 -triple x86_64-windows-msvc -fexceptions -fcxx-exceptions %s -emit-llvm -o - | FileCheck %s --check-prefix=MSVC
// RUN: %clang_cc1 -triple x86_64-windows-msvc -fexceptions -fcxx-exceptions -fsjlj-exceptions %s -emit-llvm -o - | FileCheck %s --check-prefix=SJLJ
// 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
struct Cleanup {
Cleanup();
~Cleanup();
int x = 0;
};
void g();
extern "C" void f() {
Cleanup c;
g();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment