diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2013-02-12 13:22:47 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2013-02-12 13:22:47 +0000 |
commit | 584248cf3cebcaf9abefee46fdd348eb17911a1f (patch) | |
tree | 1dc21fbffdb3f488e5da4ec45408e8e11b946f69 /clang/test | |
parent | a73704c0f818b3221b9c1b4e28533ffe56d44064 (diff) | |
download | bcm5719-llvm-584248cf3cebcaf9abefee46fdd348eb17911a1f.tar.gz bcm5719-llvm-584248cf3cebcaf9abefee46fdd348eb17911a1f.zip |
Rename -constructors test to just -structors as in fact it tests dtors too. Also, fix a minor typo in the test.
llvm-svn: 174966
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGenCXX/microsoft-abi-structors.cpp (renamed from clang/test/CodeGenCXX/microsoft-abi-constructors.cpp) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/microsoft-abi-constructors.cpp b/clang/test/CodeGenCXX/microsoft-abi-structors.cpp index c9701e8270d..12622f10897 100644 --- a/clang/test/CodeGenCXX/microsoft-abi-constructors.cpp +++ b/clang/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) |