aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/flexible-array-init.c
AgeCommit message (Collapse)AuthorFilesLines
2011-07-09clang side to match the LLVM IR type system rewrite patch.Chris Lattner1-2/+2
llvm-svn: 134831
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar1-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
2009-11-20Convert test to FileCheck.Daniel Dunbar1-4/+3
llvm-svn: 89514
2009-11-08Eliminate &&s in tests.Daniel Dunbar1-3/+3
- 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious. llvm-svn: 86430
2009-03-24Rename clang to clang-cc.Daniel Dunbar1-4/+4
Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
2009-03-20Allow flexible array initializers that are not surrounded byDouglas Gregor1-0/+8
braces. We now build the appropriate fully-structured initializer list for such things. Per PR3618, verified that we're getting the right code generation. llvm-svn: 67353