| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implementation of AST for @protocol expression. | Fariborz Jahanian | 2007-10-17 | 1 | -0/+11 |
| * | Patch to implement AST generation for objective-c's @selector expression. | Fariborz Jahanian | 2007-10-16 | 1 | -0/+14 |
| * | Change the type of ObjCStringLiteral from "struct __builtin_CFString *" to "N... | Steve Naroff | 2007-10-15 | 1 | -0/+8 |
| * | Move type compatibility predicates from Type to ASTContext. In addition, the ... | Steve Naroff | 2007-10-15 | 1 | -0/+163 |
| * | Added ASTContext::setObjcIdType/getObjcIdType(), set by Sema. | Steve Naroff | 2007-10-15 | 1 | -0/+18 |
| * | slightly simplify interface | Chris Lattner | 2007-10-11 | 1 | -3/+2 |
| * | Add __builtin_va_start to the list of builtins, make __builtin_va_list availa... | Anders Carlsson | 2007-10-11 | 1 | -0/+8 |
| * | Patch to create protocol conforming class types. | Fariborz Jahanian | 2007-10-11 | 1 | -0/+25 |
| * | Make sure methods with no return type default to "id". | Steve Naroff | 2007-10-09 | 1 | -1/+0 |
| * | remove unneeded #include | Chris Lattner | 2007-10-07 | 1 | -1/+0 |
| * | move IdentifierTable.h from liblex to libbasic. | Chris Lattner | 2007-10-07 | 1 | -1/+0 |
| * | Move ObjC decls to DeclObjC.h, a new AST header. | Steve Naroff | 2007-10-01 | 1 | -0/+1 |
| * | Use APFloat for the representation of FP immediates, ask the target | Chris Lattner | 2007-09-22 | 1 | -3/+4 |
| * | Remove SelectorTable/SelectorInfo, simply store all selectors in the central ... | Steve Naroff | 2007-09-19 | 1 | -11/+0 |
| * | Add support for ObjC keyword selectors. | Steve Naroff | 2007-09-17 | 1 | -1/+17 |
| * | fix some warnings, patch by Justin Handville | Chris Lattner | 2007-09-16 | 1 | -0/+3 |
| * | Now that the dust has settled on the Decl refactoring, I noticed FieldDecl di... | Steve Naroff | 2007-09-14 | 1 | -1/+1 |
| * | get rid of ugly "warning: no newline at end of file" | Gabor Greif | 2007-09-11 | 1 | -1/+1 |
| * | The goal of this commit is to get just enough Sema support to recognize Objec... | Steve Naroff | 2007-09-06 | 1 | -0/+10 |
| * | Fix a comment. | Steve Naroff | 2007-08-30 | 1 | -3/+2 |
| * | Polish yesterday's Array/ConstantArray/VariableArray rewrite, removing a coup... | Steve Naroff | 2007-08-30 | 1 | -20/+15 |
| * | Fix the following redefinition errors submitted by Keith Bauer... | Steve Naroff | 2007-08-30 | 1 | -21/+37 |
| * | Change EnumDecl to store its corresponding integer type | Chris Lattner | 2007-08-28 | 1 | -18/+1 |
| * | constify some stuff | Chris Lattner | 2007-08-27 | 1 | -2/+2 |
| * | implement sizeof(enum x), patch inspired by Keith Bauer. | Chris Lattner | 2007-08-27 | 1 | -7/+26 |
| * | Replaced ASTContext::maxFloatingType() with ASTContext::compareFloatingType(). | Steve Naroff | 2007-08-27 | 1 | -3/+9 |
| * | Tweak a comment and assert. | Steve Naroff | 2007-08-27 | 1 | -5/+6 |
| * | Replaced ASTContext::maxComplexType() with ASTContext::getFloatingTypeOfSizeW... | Steve Naroff | 2007-08-27 | 1 | -21/+21 |
| * | Add initial support for constant CFStrings. | Anders Carlsson | 2007-08-17 | 1 | -0/+29 |
| * | Add comments to getTypeOfExpr/getTypeOfType. | Steve Naroff | 2007-08-01 | 1 | -4/+16 |
| * | Two typeof() related changes... | Steve Naroff | 2007-08-01 | 1 | -1/+1 |
| * | Add parsing and AST support for GNU "typeof". | Steve Naroff | 2007-07-31 | 1 | -0/+12 |
| * | fix bogus warnings about potentially uninit vars Size and Align. | Chris Lattner | 2007-07-23 | 1 | -8/+8 |
| * | Fix a valgrind error noticed by Benoit Boissinot | Chris Lattner | 2007-07-20 | 1 | -1/+1 |
| * | fix a nasty bug Owen noticed in a gcc warning. | Chris Lattner | 2007-07-20 | 1 | -4/+4 |
| * | implement size/alignment analysis for arrays and vectors. This gets carbon.h... | Chris Lattner | 2007-07-19 | 1 | -4/+22 |
| * | implement sizeof/alignof support for structs, unions and complex. | Chris Lattner | 2007-07-18 | 1 | -6/+28 |
| * | First round of extended vector support. Here is an overview... | Steve Naroff | 2007-07-18 | 1 | -8/+37 |
| * | initial layout support for structures and unions. This isn't actually | Chris Lattner | 2007-07-18 | 1 | -0/+70 |
| * | teach -stats about new types | Chris Lattner | 2007-07-18 | 1 | -0/+8 |
| * | don't let builtin-type handling code fall into pointer handling code | Chris Lattner | 2007-07-15 | 1 | -0/+1 |
| * | A significant refactoring of the type size stuff to also | Chris Lattner | 2007-07-14 | 1 | -43/+19 |
| * | Use target info to decide the sizes of basic types. | Chris Lattner | 2007-07-13 | 1 | -29/+30 |
| * | Add missing citation. | Chris Lattner | 2007-07-13 | 1 | -1/+2 |
| * | Move getSize() out of type, into ASTContext, where it has target info, and | Chris Lattner | 2007-07-13 | 1 | -0/+53 |
| * | Implement codegen for + and - with pointers. Patch contributed by | Chris Lattner | 2007-07-13 | 1 | -0/+8 |
| * | Bug #: | Steve Naroff | 2007-07-06 | 1 | -0/+33 |
| * | Split complex types out from being members of BuiltinType to being their own | Chris Lattner | 2007-06-22 | 1 | -24/+46 |
| * | Finally bite the bullet and make the major change: split the clang namespace | Chris Lattner | 2007-06-15 | 1 | -8/+6 |
| * | Type::isSignedInteger() and isUnsignedInteger() did not properly account for | Chris Lattner | 2007-06-03 | 1 | -3/+10 |