Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use '-FOO' 'BAR' instead of '-FOO=BAR' in tests. | Daniel Dunbar | 2009-11-30 | 1 | -1/+1 | |
| | | | | llvm-svn: 90122 | |||||
* | Fix refactoro, clang-cc wasn't properly reporting errors when opening an ↵ | Daniel Dunbar | 2009-11-20 | 1 | -0/+4 | |
| | | | | | | output file failed. llvm-svn: 89502 | |||||
* | Remove RUN: true lines. | Daniel Dunbar | 2009-11-08 | 3 | -3/+0 | |
| | | | | llvm-svn: 86432 | |||||
* | Eliminate &&s in tests. | Daniel Dunbar | 2009-11-08 | 7 | -43/+43 | |
| | | | | | | - 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious. llvm-svn: 86430 | |||||
* | Don't run anything other than the compiler in these tests. | Daniel Dunbar | 2009-11-05 | 1 | -2/+2 | |
| | | | | llvm-svn: 86134 | |||||
* | Fix tests to not depend on /dev/null existing. | Daniel Dunbar | 2009-11-03 | 1 | -4/+5 | |
| | | | | llvm-svn: 85908 | |||||
* | Remove clang-cc code for handling -mmacosx-version-min and | Daniel Dunbar | 2009-10-30 | 1 | -10/+10 | |
| | | | | | | -miphoneos-version-min. llvm-svn: 85601 | |||||
* | clang-cc: Allow building for x86_64 with -mmacosx-version-min=10.4. | Daniel Dunbar | 2009-10-26 | 1 | -1/+0 | |
| | | | | llvm-svn: 85132 | |||||
* | Update PCH serialization of FunctionDecl flags. | Daniel Dunbar | 2009-09-22 | 1 | -3/+2 | |
| | | | | llvm-svn: 82526 | |||||
* | Add an XFAIL test which compiles differently from a .ast. | Daniel Dunbar | 2009-09-21 | 1 | -0/+9 | |
| | | | | llvm-svn: 82437 | |||||
* | Switch ProcessASTInputFile to still use ParseAST. | Daniel Dunbar | 2009-09-21 | 1 | -0/+7 | |
| | | | | | | | | - Currently this requires us to fake an input file. - This allows Sema to be keep all the logic for how to pull decls out of the external AST source and how to handle things like tentative definitions. llvm-svn: 82432 | |||||
* | Initial support for code generation from .ast files. | Daniel Dunbar | 2009-09-17 | 1 | -0/+5 | |
| | | | | | | | | - Doesn't actually work yet because only module level asm's get correctly marked as externally visible in the PCH. - Other things like 'clang-cc foo.ast -ast-dump' now work, as well. llvm-svn: 82107 | |||||
* | MultiTestRunner: Validate '&&' at the end of RUN lines. | Daniel Dunbar | 2009-07-25 | 1 | -1/+1 | |
| | | | | | | | | - This is just to normalize, these will go away soon hopefully. Added all the missing '&&'s that have crept in. :) llvm-svn: 77062 | |||||
* | Change these tests to not depend as much on the name of the input. | Daniel Dunbar | 2009-07-25 | 1 | -1/+1 | |
| | | | | llvm-svn: 77057 | |||||
* | Forward -C and -CC to clang. | Daniel Dunbar | 2009-06-08 | 1 | -0/+15 | |
| | | | | | | - <rdar://problem/6945384> Driver should pass down -C and -CC llvm-svn: 73087 | |||||
* | Fixed the test. | Fariborz Jahanian | 2009-04-10 | 1 | -2/+1 | |
| | | | | llvm-svn: 68831 | |||||
* | Add a test case for my last patch. | Fariborz Jahanian | 2009-04-10 | 1 | -0/+2 | |
| | | | | llvm-svn: 68829 | |||||
* | Test case for -miphoneos-version-min, also part of Shantonu's patch! | Daniel Dunbar | 2009-04-10 | 1 | -0/+23 | |
| | | | | llvm-svn: 68817 | |||||
* | Fix -MD with no -MT when -o is specified (and fix test case). | Daniel Dunbar | 2009-03-30 | 1 | -1/+1 | |
| | | | | llvm-svn: 68042 | |||||
* | Driver: Support -M and -MM. | Daniel Dunbar | 2009-03-30 | 1 | -2/+4 | |
| | | | | | | | | - Not particularly elegant, but my hand is forced by gcc. Also, tweak -ccc-print-bindings output. llvm-svn: 68027 | |||||
* | Improve dependency file support. | Daniel Dunbar | 2009-03-30 | 1 | -3/+3 | |
| | | | | | | | | | | | | - Rip out various bits of logic from clang-cc's dependency file gen, force driver to provide instead. - -MD output now goes to proper location <rdar://problem/6723948> clang -MD puts dep file in /tmp with wrong name - -M and -MM still don't work correctly. llvm-svn: 68022 | |||||
* | Rename clang to clang-cc. | Daniel Dunbar | 2009-03-24 | 3 | -3/+3 | |
| | | | | | | Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602 | |||||
* | Don't use &> in tests; dash doesn't understand it. | Eli Friedman | 2009-03-22 | 1 | -1/+1 | |
| | | | | llvm-svn: 67483 | |||||
* | fix test | Chris Lattner | 2009-03-21 | 1 | -1/+1 | |
| | | | | llvm-svn: 67455 | |||||
* | Frontend: Handle empty input on stdin. | Daniel Dunbar | 2009-03-21 | 1 | -0/+3 | |
| | | | | | | | | | | - PR3854. I think it makes more sense to change MemoryBuffer::getSTDIN (return 0 should indicate error, not empty), but it is documented to return 0 for empty inputs, and some other code appears to rely on this. llvm-svn: 67448 | |||||
* | Rename lib/Driver (etc) to lib/Frontend in prep for the *actual* | Daniel Dunbar | 2009-03-02 | 2 | -0/+23 | |
driver taking lib/Driver. llvm-svn: 65811 |