diff options
Diffstat (limited to 'clang/test/CodeGenCXX')
-rw-r--r-- | clang/test/CodeGenCXX/optnone-and-attributes.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/optnone-class-members.cpp | 4 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/optnone-def-decl.cpp | 4 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/optnone-templates.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGenCXX/optnone-and-attributes.cpp b/clang/test/CodeGenCXX/optnone-and-attributes.cpp index 56173b5a360..870d5e9496f 100644 --- a/clang/test/CodeGenCXX/optnone-and-attributes.cpp +++ b/clang/test/CodeGenCXX/optnone-and-attributes.cpp @@ -79,4 +79,4 @@ int exported_optnone_func(int a) { // CHECK: attributes [[NORETURN]] = { noinline noreturn {{.*}} optnone // CHECK: attributes [[DLLIMPORT]] = -// CHECK-SAME-NOT: optnone +// CHECK-NOT: optnone diff --git a/clang/test/CodeGenCXX/optnone-class-members.cpp b/clang/test/CodeGenCXX/optnone-class-members.cpp index 147b8219676..751f3dd2bf0 100644 --- a/clang/test/CodeGenCXX/optnone-class-members.cpp +++ b/clang/test/CodeGenCXX/optnone-class-members.cpp @@ -159,6 +159,6 @@ int bar() { // CHECK: attributes [[NORMAL]] = -// CHECK-SAME-NOT: noinline -// CHECK-SAME-NOT: optnone +// CHECK-NOT: noinline +// CHECK-NOT: optnone // CHECK: attributes [[OPTNONE]] = {{.*}} noinline {{.*}} optnone diff --git a/clang/test/CodeGenCXX/optnone-def-decl.cpp b/clang/test/CodeGenCXX/optnone-def-decl.cpp index cb3a6779364..0240189c508 100644 --- a/clang/test/CodeGenCXX/optnone-def-decl.cpp +++ b/clang/test/CodeGenCXX/optnone-def-decl.cpp @@ -91,5 +91,5 @@ int user_of_forceinline_optnone_function() { // CHECK: attributes [[OPTNONE]] = { noinline nounwind optnone {{.*}} } // CHECK: attributes [[NORMAL]] = -// CHECK-SAME-NOT: noinline -// CHECK-SAME-NOT: optnone +// CHECK-NOT: noinline +// CHECK-NOT: optnone diff --git a/clang/test/CodeGenCXX/optnone-templates.cpp b/clang/test/CodeGenCXX/optnone-templates.cpp index 45a72b3b176..9f97d832c1e 100644 --- a/clang/test/CodeGenCXX/optnone-templates.cpp +++ b/clang/test/CodeGenCXX/optnone-templates.cpp @@ -100,5 +100,5 @@ void container3() // CHECK: attributes [[NORMAL]] = -// CHECK-SAME-NOT: optnone +// CHECK-NOT: optnone // CHECK: attributes [[OPTNONE]] = {{.*}} optnone |