Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't hit an assertion failure when calculating the __PRETTY_FUNCTION__ | Argyrios Kyrtzidis | 2012-12-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | | of a member function with parenthesized declarator. Like this test case: class Foo { const char *(baz)() { return __PRETTY_FUNCTION__; } }; llvm-svn: 170233 | ||||
* | Improve the printing of __PRETTY_FUNCTION__ more provide more | Douglas Gregor | 2012-04-10 | 1 | -6/+174 |
| | | | | | | information and more closely match GCC's, from Nikola Smiljanic! llvm-svn: 154430 | ||||
* | Add unnamed_addr when creating artificial string globals. For example, in | Rafael Espindola | 2011-01-10 | 1 | -53/+53 |
| | | | | | | | | | static const char foo[] = "foo"; static const char *bar = "bar"; the global created to hold "bar" will have it, but foo will not. llvm-svn: 123192 | ||||
* | Fix for PR5871. Make __PRETTY_FUNCTION__ work for member functions defined ↵ | Sam Weinig | 2009-12-28 | 1 | -0/+18 |
| | | | | | | in a class local to a function. llvm-svn: 92200 | ||||
* | Fix for PR5872. Add static specifier and const/volatile qualifiers to member ↵ | Sam Weinig | 2009-12-27 | 1 | -5/+35 |
| | | | | | | functions in __PRETTY_FUNCTION__ predefined expressions. llvm-svn: 92171 | ||||
* | Fix for PR5844. Be explicit about anonymous struct/class/union/namespaces in ↵ | Sam Weinig | 2009-12-24 | 1 | -5/+80 |
| | | | | | | __PRETTY_FUNCTION__ predefined expression. llvm-svn: 92149 | ||||
* | 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 | ||||
* | Don't print a void return type for C++ constructors and destructors when ↵ | Sam Weinig | 2009-12-06 | 1 | -4/+4 |
| | | | | | | generating a predefined expr for them. llvm-svn: 90725 | ||||
* | Speed up testing by avoiding stdio.h, also helps testing on windows. | Mike Stump | 2009-10-08 | 1 | -1/+1 |
| | | | | | | Patch by John Thompson. llvm-svn: 83593 | ||||
* | Don't use the PredefinedExpr string as the global variable name, these don't | Daniel Dunbar | 2009-09-12 | 1 | -35/+35 |
| | | | | | | make very nice symbols, just use the function name. llvm-svn: 81653 | ||||
* | Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam ↵ | Anders Carlsson | 2009-09-08 | 1 | -0/+226 |
Weinig! llvm-svn: 81237 |