From 6c9dccd7c437d091a911b749eb0b96f7baea7715 Mon Sep 17 00:00:00 2001 From: Timur Iskhodzhanov Date: Tue, 12 Feb 2013 13:22:47 +0000 Subject: [PATCH] Rename -constructors test to just -structors as in fact it tests dtors too. Also, fix a minor typo in the test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174966 91177308-0d34-0410-b5e6-96231b3b80d8 --- ...crosoft-abi-constructors.cpp => microsoft-abi-structors.cpp} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename test/CodeGenCXX/{microsoft-abi-constructors.cpp => microsoft-abi-structors.cpp} (94%) diff --git a/test/CodeGenCXX/microsoft-abi-constructors.cpp b/test/CodeGenCXX/microsoft-abi-structors.cpp similarity index 94% rename from test/CodeGenCXX/microsoft-abi-constructors.cpp rename to test/CodeGenCXX/microsoft-abi-structors.cpp index c9701e8270..12622f1089 100644 --- a/test/CodeGenCXX/microsoft-abi-constructors.cpp +++ b/test/CodeGenCXX/microsoft-abi-structors.cpp @@ -6,7 +6,7 @@ class A { ~A() { } }; -void no_contstructor_destructor_infinite_recursion() { +void no_constructor_destructor_infinite_recursion() { A a; // CHECK: define linkonce_odr x86_thiscallcc %class.A* @"\01??0A@@QAE@XZ"(%class.A* %this) -- 2.40.0