aboutsummaryrefslogtreecommitdiff
path: root/clang/test/ASTMerge/enum.c
AgeCommit message (Collapse)AuthorFilesLines
2013-07-04Add 'not' to commands that are expected to fail.Rafael Espindola1-1/+1
This is at least good documentation, but also opens the possibility of using pipefail. llvm-svn: 185652
2010-04-07Instead of counting totally diagnostics, split the count into a countChris Lattner1-1/+1
of errors and warnings. This allows us to emit something like this: 2 warnings and 1 error generated. instead of: 3 diagnostics generated. This also stops counting 'notes' because they are just follow-on information about the previous diag, not a diagnostic in themselves. llvm-svn: 100675
2010-02-12Implement AST importing and merging for enumeration types andDouglas Gregor1-0/+25
enumerators, along with ImplicitCastExprs to make it work. llvm-svn: 96024