diff options
Diffstat (limited to 'test/CodeGenCXX/abstract-class-ctors-dtors.cpp')
-rw-r--r-- | test/CodeGenCXX/abstract-class-ctors-dtors.cpp | 4 |
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 793bbde050212..f36922413d83c 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() { } |