aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/abstract-class-ctors-dtors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/abstract-class-ctors-dtors.cpp')
-rw-r--r--test/CodeGenCXX/abstract-class-ctors-dtors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/abstract-class-ctors-dtors.cpp b/test/CodeGenCXX/abstract-class-ctors-dtors.cpp
index 793bbde05021..f36922413d83 100644
--- a/test/CodeGenCXX/abstract-class-ctors-dtors.cpp
+++ b/test/CodeGenCXX/abstract-class-ctors-dtors.cpp
@@ -7,10 +7,10 @@ struct A {
~A();
};
-// CHECK-NOT-LABEL: define void @_ZN1AC1Ev
+// CHECK-NOT: define void @_ZN1AC1Ev
// CHECK-LABEL: define void @_ZN1AC2Ev
-// CHECK-LABEL: define void @_ZN1AD1Ev
// CHECK-LABEL: define void @_ZN1AD2Ev
+// CHECK-LABEL: define void @_ZN1AD1Ev
A::A() { }
A::~A() { }