summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/constructor-direct-call.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix newlines.Daniel Dunbar2011-01-181-60/+60
| | | | llvm-svn: 123742
* tests: Force a triple.Daniel Dunbar2011-01-181-1/+1
| | | | llvm-svn: 123741
* Add support for explicit constructor calls in Microsoft mode.Francois Pichet2011-01-181-0/+60
For example: class A{ public: A& operator=(const A& that) { if (this != &that) { this->A::~A(); this->A::A(that); // <=== explicit constructor call. } return *this; } }; More work will be needed to support an explicit call to a template constructor. llvm-svn: 123735
OpenPOWER on IntegriCloud