| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | AST printing for C++ base classes | Douglas Gregor | 2009-05-30 | 1 | -0/+7 | |
| | | | | | llvm-svn: 72617 | |||||
| * | Pretty printing and improved representation for namespace alias declarations | Douglas Gregor | 2009-05-30 | 1 | -0/+2 | |
| | | | | | llvm-svn: 72616 | |||||
| * | Printing for using directives, e.g., | Douglas Gregor | 2009-05-30 | 3 | -0/+19 | |
| | | | | | | | | | | using namespace std::debug; Extended UsingDirectiveDecl to store the nested-name-specifier that precedes the nominated namespace. llvm-svn: 72614 | |||||
| * | Never suppress specifiers when printing the parameters of a function | Douglas Gregor | 2009-05-30 | 1 | -0/+2 | |
| | | | | | | | declaration. llvm-svn: 72613 | |||||
| * | Refactor and clean up the AST printer, so that it uses a DeclVisitor, | Douglas Gregor | 2009-05-30 | 1 | -0/+1 | |
| | | | | | | | | | | walks through DeclContexts properly, and prints more of the information available in the AST. The functionality is still available via -ast-print, -ast-dump, etc., and also via the new member functions Decl::dump() and Decl::print(). llvm-svn: 72597 | |||||
| * | AST XML dump, from Olaf Krzikalla! | Douglas Gregor | 2009-05-21 | 1 | -1/+2 | |
| | | | | | llvm-svn: 72224 | |||||
| * | Simplify tests now that GNU runtime supports exception handling. | Daniel Dunbar | 2009-05-18 | 2 | -7/+0 | |
| | | | | | llvm-svn: 72021 | |||||
| * | This patch fixes two bugs in the GNU Objective-C runtime implementation. ↵ | Fariborz Jahanian | 2009-05-17 | 1 | -2/+1 | |
| | | | | | | | | | One is a case in rethrowing exceptions where the C types don't match correctly (I already sent this patch to Daniel Dunbar, who found the bug, so it may have already been committed). The other fixes the case properties so that the methods generated as property accessors are added to the class structure correctly. Patch by David Chisnall. llvm-svn: 71980 | |||||
| * | remove obsolete tests. | Chris Lattner | 2009-04-22 | 2 | -10/+0 | |
| | | | | | llvm-svn: 69830 | |||||
| * | We no longer accept @defs with the non-fragile ABI. | Daniel Dunbar | 2009-04-21 | 1 | -0/+2 | |
| | | | | | llvm-svn: 69721 | |||||
| * | Apply a patch which adds 'OriginalParmVar' to the DeclContextPrinter by Jon | Zhongxing Xu | 2009-04-05 | 1 | -0/+3 | |
| | | | | | | | Simons. llvm-svn: 68436 | |||||
| * | Support member reference on ?: of struct type. | Daniel Dunbar | 2009-03-24 | 1 | -0/+16 | |
| | | | | | llvm-svn: 67603 | |||||
| * | Rename clang to clang-cc. | Daniel Dunbar | 2009-03-24 | 13 | -42/+42 | |
| | | | | | | | Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602 | |||||
| * | Use not instead of ! in tests. | Daniel Dunbar | 2009-03-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 67601 | |||||
| * | Update test case. | Daniel Dunbar | 2009-03-20 | 2 | -7/+2 | |
| | | | | | llvm-svn: 67392 | |||||
| * | More super dot-syntax property implementation | Fariborz Jahanian | 2009-03-20 | 1 | -2/+0 | |
| | | | | | | | | when there is actually a property declaration used in the dot-syntax. llvm-svn: 67391 | |||||
| * | Don't mangle names of local variables. | Daniel Dunbar | 2009-03-05 | 1 | -0/+8 | |
| | | | | | | | | | - For one thing, this adds unneeded overhead; for another, this routine can be used to emit unnamed decls which we shouldn't try to mangle. llvm-svn: 66212 | |||||
| * | Support va_arg on _Complex. | Daniel Dunbar | 2009-02-10 | 1 | -0/+1 | |
| | | | | | | | | | | | | gcc compat test suite results (Darwin x86-32 & -64): -- # of expected passes 1110 # of unexpected failures 74 # of unresolved testcases 168 # of unsupported tests 2 llvm-svn: 64197 | |||||
| * | Handle demotion of coerced arguments (as in void a(x) short x; { ... }). | Daniel Dunbar | 2009-02-04 | 2 | -3/+16 | |
| | | | | | llvm-svn: 63726 | |||||
| * | Force triple for this test case. | Daniel Dunbar | 2009-02-04 | 1 | -3/+3 | |
| | | | | | llvm-svn: 63699 | |||||
| * | A couple more vector component access fixes. | Nate Begeman | 2009-01-18 | 1 | -1/+1 | |
| | | | | | llvm-svn: 62443 | |||||
| * | Patch to diagnose a variety of misuse of property | Fariborz Jahanian | 2008-12-06 | 1 | -1/+1 | |
| | | | | | | | | attributes. Example would be, readonly, assign or assign, copy, etc. llvm-svn: 60620 | |||||
| * | disable these two tests, they crash and take a long time to run ↵ | Chris Lattner | 2008-11-13 | 2 | -4/+6 | |
| | | | | | | | crashreporter etc. llvm-svn: 59254 | |||||
| * | Use #define trickery to de-XFAIL test/Coverage/codegen-gnu.m while | Daniel Dunbar | 2008-10-24 | 2 | -3/+9 | |
| | | | | | | | still getting coverage for non-IRgen cases. llvm-svn: 58084 | |||||
| * | Use #define trickery to de-XFAIL test/Coverage/codegen-next.m while | Daniel Dunbar | 2008-10-24 | 2 | -6/+12 | |
| | | | | | | | still getting coverage for non-IRgen cases. llvm-svn: 58082 | |||||
| * | Add coverage of part of getPrimaryDecl that was failing prior to | Daniel Dunbar | 2008-10-21 | 1 | -3/+4 | |
| | | | | | | | previous commit. llvm-svn: 57930 | |||||
| * | Add some uses of PredefinedExpr to language coverage includes. | Daniel Dunbar | 2008-10-17 | 2 | -0/+10 | |
| | | | | | llvm-svn: 57744 | |||||
| * | Improve C language testing coverage. | Daniel Dunbar | 2008-10-05 | 1 | -0/+35 | |
| | | | | | llvm-svn: 57103 | |||||
| * | Coverage test for targets. | Daniel Dunbar | 2008-10-05 | 1 | -0/+18 | |
| | | | | | | | - This pushes us over 80% coverage of executable LOC. llvm-svn: 57092 | |||||
| * | Improve codegen coverage tests. | Daniel Dunbar | 2008-10-05 | 5 | -9/+13 | |
| | | | | | | | | - Hit debug info generation. - Hit both ObjC runtimes. llvm-svn: 57088 | |||||
| * | Add coverage tests of C and Obj-C language features. | Daniel Dunbar | 2008-10-04 | 11 | -0/+211 | |
| | | | | | | | | | | | - AST printing, dumping, serialization, codegen. - HTML printing. - Parser callbacks. Several of these are XFAIL because they trigger unimplemented code. llvm-svn: 57081 | |||||
| * | Add test/Driver. | Daniel Dunbar | 2008-10-04 | 2 | -0/+16 | |
| - env-include-paths.c is XFAIL as it exposed a bug. Add test/Coverage. - For tests which achieve code coverage but don't validate anything. llvm-svn: 57070 | ||||||

