diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2015-06-17 22:27:32 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2015-06-17 22:27:32 +0000 |
commit | 9bc2ad5e6c0b2a2e87a2dc3d34f401fc8c33cac5 (patch) | |
tree | fb067f87d9f59227c2bf322289a10c88a3157c6d /clang/test/Driver/asan.c | |
parent | 6f1e05f388f7c890e6aaeab163864c9d8367a980 (diff) | |
download | bcm5719-llvm-9bc2ad5e6c0b2a2e87a2dc3d34f401fc8c33cac5.tar.gz bcm5719-llvm-9bc2ad5e6c0b2a2e87a2dc3d34f401fc8c33cac5.zip |
Revert "[Sanitizers] Provide better diagnostic for sanitizers unsupported for target triple."
This reverts commit r239953, while I'm investigating assertion
failure from http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-incremental_check/9994/
llvm-svn: 239958
Diffstat (limited to 'clang/test/Driver/asan.c')
-rw-r--r-- | clang/test/Driver/asan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Driver/asan.c b/clang/test/Driver/asan.c index bea8544595d..f199e904e75 100644 --- a/clang/test/Driver/asan.c +++ b/clang/test/Driver/asan.c @@ -1,7 +1,7 @@ -// RUN: %clang -target i386-unknown-linux -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s -// RUN: %clang -O1 -target i386-unknown-linux -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s -// RUN: %clang -O2 -target i386-unknown-linux -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s -// RUN: %clang -O3 -target i386-unknown-linux -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s +// RUN: %clang -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s +// RUN: %clang -O1 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s +// RUN: %clang -O2 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s +// RUN: %clang -O3 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s // Verify that -fsanitize=address invokes asan instrumentation. int foo(int *a) { return *a; } |