From: Reid Kleckner Date: Wed, 22 Apr 2015 21:39:55 +0000 (+0000) Subject: Fix another test broken by r235537 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2bddf4b6aac8a5d1fc862c8b002ddb6a72f19df;p=clang Fix another test broken by r235537 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@235555 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/sanitize-thread-attr.cpp b/test/CodeGen/sanitize-thread-attr.cpp index fe5d81026d..dae48e092c 100644 --- a/test/CodeGen/sanitize-thread-attr.cpp +++ b/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 }