diff options
-rw-r--r-- | clang/test/CodeGenCXX/delete.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/destructors.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/microsoft-abi-structors.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/delete.cpp b/clang/test/CodeGenCXX/delete.cpp index 1299b29a03a..d11608ef6f5 100644 --- a/clang/test/CodeGenCXX/delete.cpp +++ b/clang/test/CodeGenCXX/delete.cpp @@ -145,4 +145,4 @@ namespace test5 { } } -// CHECK: attributes [[NUW]] = { nounwind{{.*}} } +// CHECK: attributes [[NUW]] = {{[{].*}} nounwind {{.*[}]}} diff --git a/clang/test/CodeGenCXX/destructors.cpp b/clang/test/CodeGenCXX/destructors.cpp index 7dc188ba94b..34d885d48b1 100644 --- a/clang/test/CodeGenCXX/destructors.cpp +++ b/clang/test/CodeGenCXX/destructors.cpp @@ -418,4 +418,4 @@ namespace test9 { // CHECK: call void @_ZN5test312_GLOBAL__N_11CD0Ev( // CHECK: ret void - // CHECK: attributes [[NUW]] = { nounwind{{.*}} } + // CHECK: attributes [[NUW]] = {{[{].*}} nounwind {{.*[}]}} diff --git a/clang/test/CodeGenCXX/microsoft-abi-structors.cpp b/clang/test/CodeGenCXX/microsoft-abi-structors.cpp index 27c00063395..6d43c7daf1e 100644 --- a/clang/test/CodeGenCXX/microsoft-abi-structors.cpp +++ b/clang/test/CodeGenCXX/microsoft-abi-structors.cpp @@ -119,7 +119,7 @@ struct D { void use_D() { D c; } -// DTORS: attributes [[NUW]] = { nounwind{{.*}} } +// DTORS: attributes [[NUW]] = {{[{].*}} nounwind {{.*[}]}} } // end namespace basic |