diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-20 03:30:30 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-20 03:30:30 +0000 |
commit | 6c3e1805b92b644cc251d563a43c4ffd8d5c421f (patch) | |
tree | 3d0b5621866bf888f9170471d25a5dedc644ea43 /test/Misc | |
parent | 76f98b646ef1a45fcde58d5f311704197b84a152 (diff) |
clang/test/Misc/ast-dump-decl.c: Add triple. __thread is not supported on all targets.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170645 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Misc')
-rw-r--r-- | test/Misc/ast-dump-decl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Misc/ast-dump-decl.c b/test/Misc/ast-dump-decl.c index 4bfd188954..71b4578add 100644 --- a/test/Misc/ast-dump-decl.c +++ b/test/Misc/ast-dump-decl.c @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -ast-dump -ast-dump-filter Test %s | FileCheck -check-prefix CHECK -strict-whitespace %s -// RUN: %clang_cc1 -ast-dump %s | FileCheck -check-prefix CHECK-TU -strict-whitespace %s +// RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump -ast-dump-filter Test %s | FileCheck -check-prefix CHECK -strict-whitespace %s +// RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump %s | FileCheck -check-prefix CHECK-TU -strict-whitespace %s int TestLocation; // CHECK: VarDecl 0x{{[^ ]*}} <{{.*}}:4:1, col:5> TestLocation |