summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/copy-assign-synthesis-3.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Prior to adding the new "expected-no-diagnostics" directive to ↵Andy Gibbs2012-10-191-0/+1
| | | | | | VerifyDiagnosticConsumer, make the necessary adjustment to 580 test-cases which will henceforth require this new directive. llvm-svn: 166280
* Fix a couple bugs in copy assignment operator synthesis.Eli Friedman2010-01-151-7/+13
| | | | llvm-svn: 93546
* Improve coverage for test.Eli Friedman2010-01-031-0/+2
| | | | llvm-svn: 92440
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-151-1/+1
| | | | | | | | | - This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
* Make copy assignment operator synthesis not explode for classes with complexEli Friedman2009-12-081-0/+16
or non-record aggregate members. It might be worth spending some time to optimize this code (and the parallel code for copy constructors) to memcpy in larger chunks, rather than copying one member at a time. Not sure exactly how beneficial that would be, but it seems like could help for large classes with, for example, a vtable pointer forcing the generation of a copy constructor. llvm-svn: 90823
OpenPOWER on IntegriCloud