diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-04-22 21:39:55 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-04-22 21:39:55 +0000 |
commit | fca03389bdd3c2c91ac2e733deaa13555a7d6eb1 (patch) | |
tree | fe7d2fbfd6c224452945ce634a34393f172c0e96 /clang/test/CodeGen/sanitize-thread-attr.cpp | |
parent | 34cfa49b66906c8a090d9b5d121aa729b97c1aef (diff) | |
download | bcm5719-llvm-fca03389bdd3c2c91ac2e733deaa13555a7d6eb1.tar.gz bcm5719-llvm-fca03389bdd3c2c91ac2e733deaa13555a7d6eb1.zip |
Fix another test broken by r235537
llvm-svn: 235555
Diffstat (limited to 'clang/test/CodeGen/sanitize-thread-attr.cpp')
-rw-r--r-- | clang/test/CodeGen/sanitize-thread-attr.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/clang/test/CodeGen/sanitize-thread-attr.cpp b/clang/test/CodeGen/sanitize-thread-attr.cpp index fe5d81026db..dae48e092cd 100644 --- a/clang/test/CodeGen/sanitize-thread-attr.cpp +++ b/clang/test/CodeGen/sanitize-thread-attr.cpp @@ -46,16 +46,13 @@ int force_instance = TemplateTSANOk<42>() // Check that __cxx_global_var_init* get the sanitize_thread attribute. int global1 = 0; int global2 = *(int*)((char*)&global1+1); -// WITHOUT: @__cxx_global_var_init{{.*}}[[NOATTR_NO_TF:#[0-9]+]] -// BL: @__cxx_global_var_init{{.*}}[[NOATTR_NO_TF:#[0-9]+]] -// TSAN: @__cxx_global_var_init{{.*}}[[WITH_NO_TF:#[0-9]+]] +// WITHOUT: @__cxx_global_var_init{{.*}}[[NOATTR:#[0-9]+]] +// BL: @__cxx_global_var_init{{.*}}[[NOATTR:#[0-9]+]] +// TSAN: @__cxx_global_var_init{{.*}}[[WITH:#[0-9]+]] // WITHOUT: attributes [[NOATTR]] = { nounwind{{.*}} } -// WITHOUT: attributes [[NOATTR_NO_TF]] = { nounwind } // BL: attributes [[NOATTR]] = { nounwind{{.*}} } -// BL: attributes [[NOATTR_NO_TF]] = { nounwind{{.*}} } // TSAN: attributes [[NOATTR]] = { nounwind{{.*}} } // TSAN: attributes [[WITH]] = { nounwind sanitize_thread{{.*}} } -// TSAN: attributes [[WITH_NO_TF]] = { nounwind sanitize_thread } |