Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add -fcxx-exceptions to all tests that use C++ exceptions. | Anders Carlsson | 2011-02-28 | 1 | -1/+1 | |
| | | | | llvm-svn: 126599 | |||||
* | Pass -fexceptions to all tests that use try/catch/throw. | Anders Carlsson | 2011-02-19 | 1 | -1/+1 | |
| | | | | llvm-svn: 126037 | |||||
* | Get rid of the [[final]] C++0x attribute. | Anders Carlsson | 2011-01-23 | 1 | -1/+0 | |
| | | | | llvm-svn: 124083 | |||||
* | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar | 2009-12-15 | 1 | -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 | |||||
* | Added rudimentary C++0x attribute support. | Alexis Hunt | 2009-11-21 | 1 | -0/+61 | |
The following attributes are currently supported in C++0x attribute lists (and in GNU ones as well): - align() - semantics believed to be conformant to n3000, except for redeclarations and what entities it may apply to - final - semantics believed to be conformant to CWG issue 817's proposed wording, except for redeclarations - noreturn - semantics believed to be conformant to n3000, except for redeclarations - carries_dependency - currently ignored (this is an optimization hint) llvm-svn: 89543 |