diff options
| author | Martell Malone <martellmalone@gmail.com> | 2017-11-29 06:51:27 +0000 |
|---|---|---|
| committer | Martell Malone <martellmalone@gmail.com> | 2017-11-29 06:51:27 +0000 |
| commit | 2fa25706ed4bfd4184e15f38657636ff94e35745 (patch) | |
| tree | e1fb3f2f2e4f3e17cee504da8d9c73ade56bdf5a /clang/test | |
| parent | 390cfcb0b1df73b7b2a13e02f63dff46e8fe09cd (diff) | |
| download | bcm5719-llvm-2fa25706ed4bfd4184e15f38657636ff94e35745.tar.gz bcm5719-llvm-2fa25706ed4bfd4184e15f38657636ff94e35745.zip | |
Revert "Toolchain: Normalize dwarf, sjlj and seh eh"
This reverts rL319294.
The windows sanitizer does not like seh on x86.
Will re apply with None type for x86
llvm-svn: 319295
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/CodeGenCXX/mingw-w64-exceptions.c | 22 | ||||
| -rw-r--r-- | clang/test/CodeGenCXX/mingw-w64-seh-exceptions.cpp | 3 | ||||
| -rw-r--r-- | clang/test/Preprocessor/arm-target-features.c | 2 | ||||
| -rw-r--r-- | clang/test/Preprocessor/init.c | 1 |
4 files changed, 1 insertions, 27 deletions
diff --git a/clang/test/CodeGenCXX/mingw-w64-exceptions.c b/clang/test/CodeGenCXX/mingw-w64-exceptions.c deleted file mode 100644 index e980ebd3350..00000000000 --- a/clang/test/CodeGenCXX/mingw-w64-exceptions.c +++ /dev/null @@ -1,22 +0,0 @@ -// RUN: %clang -target x86_64-windows-gnu -c %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-SEH -// RUN: %clang -target i686-windows-gnu -c %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-DWARF - -// RUN: %clang -target x86_64-windows-gnu -fsjlj-exceptions -c %s -### 2>&1 | \ -// RUN: FileCheck %s --check-prefix=CHECK-SJLJ - -// RUN: %clang -target x86_64-windows-gnu -fdwarf-exceptions -c %s -### 2>&1 | \ -// RUN: FileCheck %s --check-prefix=CHECK-DWARF - -// RUN: %clang -target x86_64-windows-gnu -fsjlj-exceptions -fseh-exceptions -c %s -### 2>&1 | \ -// RUN: FileCheck %s --check-prefix=CHECK-SEH - -// RUN: %clang -target x86_64-windows-gnu -fseh-exceptions -fsjlj-exceptions -c %s -### 2>&1 | \ -// RUN: FileCheck %s --check-prefix=CHECK-SJLJ - -// RUN: %clang -target x86_64-windows-gnu -fseh-exceptions -fdwarf-exceptions -c %s -### 2>&1 | \ -// RUN: FileCheck %s --check-prefix=CHECK-DWARF - -// CHECK-SEH: "-fseh-exceptions" -// CHECK-SJLJ: "-fsjlj-exceptions" -// CHECK-DWARF-NOT: "-fsjlj-exceptions" -// CHECK-DWARF-NOT: "-fseh-exceptions" diff --git a/clang/test/CodeGenCXX/mingw-w64-seh-exceptions.cpp b/clang/test/CodeGenCXX/mingw-w64-seh-exceptions.cpp index 046c4a815f4..9025f877c55 100644 --- a/clang/test/CodeGenCXX/mingw-w64-seh-exceptions.cpp +++ b/clang/test/CodeGenCXX/mingw-w64-seh-exceptions.cpp @@ -1,5 +1,4 @@ -// RUN: %clang_cc1 %s -fexceptions -fseh-exceptions -emit-llvm -triple x86_64-w64-windows-gnu -o - | FileCheck %s --check-prefix=X64 -// RUN: %clang_cc1 %s -fexceptions -fdwarf-exceptions -emit-llvm -triple i686-w64-windows-gnu -o - | FileCheck %s --check-prefix=X86 +// RUN: %clang_cc1 %s -fexceptions -emit-llvm -triple x86_64-w64-windows-gnu -o - | FileCheck %s --check-prefix=X64 // RUN: %clang_cc1 %s -fexceptions -emit-llvm -triple i686-w64-windows-gnu -o - | FileCheck %s --check-prefix=X86 extern "C" void foo(); diff --git a/clang/test/Preprocessor/arm-target-features.c b/clang/test/Preprocessor/arm-target-features.c index 0067e108d33..b206e1cf36f 100644 --- a/clang/test/Preprocessor/arm-target-features.c +++ b/clang/test/Preprocessor/arm-target-features.c @@ -214,7 +214,6 @@ // A5:#define __ARM_ARCH_7A__ 1 // A5-NOT:#define __ARM_ARCH_EXT_IDIV__ // A5:#define __ARM_ARCH_PROFILE 'A' -// A5-NOT:#define __ARM_DWARF_EH__ 1 // A5-NOT: #define __ARM_FEATURE_DIRECTED_ROUNDING // A5:#define __ARM_FEATURE_DSP 1 // A5-NOT: #define __ARM_FEATURE_NUMERIC_MAXMIN @@ -226,7 +225,6 @@ // A7:#define __ARM_ARCH 7 // A7:#define __ARM_ARCH_EXT_IDIV__ 1 // A7:#define __ARM_ARCH_PROFILE 'A' -// A7-NOT:#define __ARM_DWARF_EH__ 1 // A7:#define __ARM_FEATURE_DSP 1 // A7:#define __ARM_FP 0xE diff --git a/clang/test/Preprocessor/init.c b/clang/test/Preprocessor/init.c index f767c7ad01a..5fc568eae58 100644 --- a/clang/test/Preprocessor/init.c +++ b/clang/test/Preprocessor/init.c @@ -1442,7 +1442,6 @@ // // ARM-MSVC: #define _M_ARM_NT 1 // ARM-MSVC: #define _WIN32 1 -// ARM-MSVC-NOT:#define __ARM_DWARF_EH__ 1 // RUN: %clang_cc1 -E -dM -ffreestanding -triple=aarch64-windows-msvc < /dev/null | FileCheck -match-full-lines -check-prefix AARCH64-MSVC %s // |

