Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | When performing a user-defined conversion via a constructor, be sure | Douglas Gregor | 2011-10-10 | 1 | -0/+1 |
| | | | | | | | to check whether the constructor is accessible. Fixes <rdar://problem/10202900>. llvm-svn: 141588 | ||||
* | Warn about code that uses variables and functions with internal linkage | John McCall | 2011-02-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | without defining them. This should be an error, but I'm paranoid about "uses" that end up not actually requiring a definition. I'll revisit later. Also, teach IR generation to not set internal linkage on variable declarations, just for safety's sake. Doing so produces an invalid module if the variable is not ultimately defined. Also, fix several places in the test suite where we were using internal functions without definitions. llvm-svn: 126016 | ||||
* | tests: Use %clangxx when using driver for C++, in case C++ support is disabled. | Daniel Dunbar | 2010-06-29 | 1 | -1/+1 |
| | | | | llvm-svn: 107153 | ||||
* | Update tests to use %clang instead of 'clang', and forcibly disable use of ' | Daniel Dunbar | 2009-12-15 | 1 | -1/+1 |
| | | | | | | | clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to garbage). llvm-svn: 91460 | ||||
* | When rebuilding CXXConstructExprs after a transformation, use | Douglas Gregor | 2009-12-14 | 1 | -0/+19 |
CompleteConstructorCall to perform type-checking. llvm-svn: 91279 |