diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-13 02:43:54 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-13 02:43:54 +0000 |
commit | fd3834f7a1cc06f3843a83080c65eadb613927f4 (patch) | |
tree | 8b34c1ec3249c0d7d89aad10e848997a321e94c3 /clang/test/Misc/ast-dump-decl.c | |
parent | 98c0eaecf51606fb1b83cdec6e6ddeaf091a61cc (diff) | |
download | bcm5719-llvm-fd3834f7a1cc06f3843a83080c65eadb613927f4.tar.gz bcm5719-llvm-fd3834f7a1cc06f3843a83080c65eadb613927f4.zip |
Annotate flavor of TLS variable (statically or dynamically initialized) onto the AST.
llvm-svn: 179447
Diffstat (limited to 'clang/test/Misc/ast-dump-decl.c')
-rw-r--r-- | clang/test/Misc/ast-dump-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/ast-dump-decl.c b/clang/test/Misc/ast-dump-decl.c index c74da29f6d6..94335b825c8 100644 --- a/clang/test/Misc/ast-dump-decl.c +++ b/clang/test/Misc/ast-dump-decl.c @@ -139,7 +139,7 @@ extern int TestVarDeclSC; // CHECK: VarDecl{{.*}} TestVarDeclSC 'int' extern __thread int TestVarDeclThread; -// CHECK: VarDecl{{.*}} TestVarDeclThread 'int' __thread +// CHECK: VarDecl{{.*}} TestVarDeclThread 'int' tls{{$}} __module_private__ int TestVarDeclPrivate; // CHECK: VarDecl{{.*}} TestVarDeclPrivate 'int' __module_private__ |