diff options
author | Reid Kleckner <rnk@google.com> | 2015-08-13 18:10:32 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-08-13 18:10:32 +0000 |
commit | 7ec8ba44b5660f28b516a609a54b274f80124fdd (patch) | |
tree | 7157472b2f40bdc5a3021dd04d8c6e116cdb35dc | |
parent | e2f6fb5d0ae95da410c754bac35723996a98a107 (diff) | |
download | bcm5719-llvm-7ec8ba44b5660f28b516a609a54b274f80124fdd.tar.gz bcm5719-llvm-7ec8ba44b5660f28b516a609a54b274f80124fdd.zip |
Try to fix new.cpp after r244920 to make it pass
llvm-svn: 244925
-rw-r--r-- | clang/test/CodeGenCXX/new.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/new.cpp b/clang/test/CodeGenCXX/new.cpp index c8e0acba7b0..6ea5af37bb5 100644 --- a/clang/test/CodeGenCXX/new.cpp +++ b/clang/test/CodeGenCXX/new.cpp @@ -371,12 +371,12 @@ namespace builtins { // CHECK-DAG: attributes [[ATTR_NOBUILTIN]] = {{[{].*}} nobuiltin {{.*[}]}} // CHECK-DAG: attributes [[ATTR_NOBUILTIN_NOUNWIND]] = {{[{].*}} nobuiltin nounwind {{.*[}]}} +// CHECK-DAG: attributes [[ATTR_BUILTIN_NEW]] = {{[{].*}} builtin {{.*[}]}} +// CHECK-DAG: attributes [[ATTR_BUILTIN_DELETE]] = {{[{].*}} builtin {{.*[}]}} + // CHECK: attributes [[ATTR_NOUNWIND]] = // CHECK-NOT: builtin // CHECK-NOT: attributes // CHECK: nounwind // CHECK-NOT: builtin -// CHECK: attributes - -// CHECK-DAG: attributes [[ATTR_BUILTIN_NEW]] = {{[{].*}} builtin {{.*[}]}} -// CHECK-DAG: attributes [[ATTR_BUILTIN_DELETE]] = {{[{].*}} builtin {{.*[}]}} +// CHECK-NOT: attributes |