diff options
-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); |