aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/union-dtor.cpp
AgeCommit message (Collapse)AuthorFilesLines
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith1-1/+1
-std=c++0x. Patch by Ahmed Charles! llvm-svn: 141900
2011-09-18PR10304: Do not call destructors for data members from union destructors. ↵Richard Smith1-0/+42
Prior to C++11, this has no effect since any such destructors must be trivial, and in C++11 such destructors must not be called. llvm-svn: 139997