diff options
author | Vitaly Buka <vitalybuka@google.com> | 2016-06-08 18:18:08 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2016-06-08 18:18:08 +0000 |
commit | 9d1b12c0913b191408869b648d3a44040853674b (patch) | |
tree | 1bd4bb601a51eaaff8eb7cd8a3ce8be84d33ff2b /clang/test/CodeGen/lifetime-asan.c | |
parent | fd4e2f7cb229b7f644bb56ef5d4149f56f896263 (diff) | |
download | bcm5719-llvm-9d1b12c0913b191408869b648d3a44040853674b.tar.gz bcm5719-llvm-9d1b12c0913b191408869b648d3a44040853674b.zip |
Specify target in lifetime-asan test.
Summary: Some target platforms -fsanitize=address.
Reviewers: pcc, eugenis
Subscribers: cfe-commits, christof, chapuni, kubabrecka
Differential Revision: http://reviews.llvm.org/D21117
llvm-svn: 272185
Diffstat (limited to 'clang/test/CodeGen/lifetime-asan.c')
-rw-r--r-- | clang/test/CodeGen/lifetime-asan.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/test/CodeGen/lifetime-asan.c b/clang/test/CodeGen/lifetime-asan.c index 2b26b4dc461..5f0c66d513d 100644 --- a/clang/test/CodeGen/lifetime-asan.c +++ b/clang/test/CodeGen/lifetime-asan.c @@ -1,8 +1,7 @@ -// RUN: %clang -S -emit-llvm -o - -O0 %s | FileCheck %s -check-prefix=CHECK-O0 -// RUN: %clang -S -emit-llvm -o - -O0 \ +// RUN: %clang -target x86_64-linux-gnu -S -emit-llvm -o - -O0 %s | FileCheck %s -check-prefix=CHECK-O0 +// RUN: %clang -target x86_64-linux-gnu -S -emit-llvm -o - -O0 \ // RUN: -fsanitize=address -fsanitize-address-use-after-scope %s | \ // RUN: FileCheck %s -check-prefix=CHECK-ASAN-USE-AFTER-SCOPE -// UNSUPPORTED: mingw32 extern int bar(char *A, int n); |