aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/cxx11-trivial-initializer-struct.cpp
AgeCommit message (Collapse)AuthorFilesLines
2013-01-11Add -std=c++98 to the test and minor improvment in addition.Fariborz Jahanian1-2/+2
llvm-svn: 172221
2013-01-11Improve on my last test for patch for // rdar://12897704Fariborz Jahanian1-0/+3
llvm-svn: 172154
2013-01-10c++ IRGen. In trivial cases that object is going into staticFariborz Jahanian1-0/+18
storage and thus is implicitly zero-initialized, no need to do C++11 memory model. This patch unconditionally detects such condition and zeroinitializer's the variable. Patch has been commented on and OKed by Doug off-line. // rdar://12897704 llvm-svn: 172144