| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix <rdar://problem/6619539> incompatible pointer types sending 'XCElementSpa... | Steve Naroff | 2009-03-01 | 1 | -26/+22 |
* | Eliminate CXXRecordType | Douglas Gregor | 2009-02-28 | 1 | -9/+1 |
* | Fix enumeration in switch warnings, plus misc comment changes. No | Eli Friedman | 2009-02-27 | 1 | -2/+41 |
* | Silence warnings. | Mike Stump | 2009-02-27 | 1 | -2/+2 |
* | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -49/+79 |
* | make ASTContext::WCharTy a bit more sensical. In C++, it is a disctint type, | Chris Lattner | 2009-02-26 | 1 | -12/+4 |
* | ok, not as broken as I thought, just confusing. This allows | Chris Lattner | 2009-02-26 | 1 | -2/+0 |
* | Make the type associated with a ClassTemplateSpecializationDecl be a | Douglas Gregor | 2009-02-26 | 1 | -0/+2 |
* | Revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65244. | Steve Naroff | 2009-02-23 | 1 | -24/+1 |
* | Enhance Evaluate to handle ObjC qualified id and class types; as far as | Eli Friedman | 2009-02-22 | 1 | -0/+1 |
* | Improvements to ASTContext::getDeclAlignInBytes; fixes the testcase in | Eli Friedman | 2009-02-22 | 1 | -11/+13 |
* | Correctly encode incomplete and variable length arrays. Fixes PR3639. | Anders Carlsson | 2009-02-22 | 1 | -8/+19 |
* | More work to integrate newly added ObjCQualifiedClassType into the type system. | Steve Naroff | 2009-02-21 | 1 | -1/+1 |
* | Add support for GCC ObjC extension "Class<protocol>". Sigh. | Steve Naroff | 2009-02-21 | 1 | -0/+23 |
* | Fixed an ICE in meta-data generation of __weak/__strong ivars. | Fariborz Jahanian | 2009-02-21 | 1 | -1/+2 |
* | Fix build on windows. | Cedric Venet | 2009-02-21 | 1 | -1/+2 |
* | This fixes <rdar://problem/6497650> More type mismatches issues with clang. | Steve Naroff | 2009-02-21 | 1 | -2/+16 |
* | remove some more methods from objc decls, using the iterator | Chris Lattner | 2009-02-20 | 1 | -6/+7 |
* | More objc's gc ir-gen stuff. | Fariborz Jahanian | 2009-02-19 | 1 | -3/+8 |
* | Fix PR3619 by properly considering size modifiers and type quals when | Chris Lattner | 2009-02-19 | 1 | -2/+2 |
* | fix some subtle bugs handling the mix of cvr qualifiers, addr spaces, | Chris Lattner | 2009-02-18 | 1 | -34/+52 |
* | Some refactoring and simplificaiotn of objc's gc | Fariborz Jahanian | 2009-02-18 | 1 | -0/+16 |
* | Add Type::isSpecificBuiltinType as a shortcut. | Daniel Dunbar | 2009-02-18 | 1 | -3/+2 |
* | Representation of objc gc's attribute using ExtQualType. | Fariborz Jahanian | 2009-02-18 | 1 | -2/+37 |
* | Eek! getDeclAlign sometimes returned alignment in bits. | Daniel Dunbar | 2009-02-17 | 1 | -2/+2 |
* | Simplified ExtQualType per Chris's feedback. | Fariborz Jahanian | 2009-02-17 | 1 | -3/+2 |
* | Added support for objc's gc attribute in ExtQualType. | Fariborz Jahanian | 2009-02-17 | 1 | -2/+3 |
* | Renamed ASQualType to ExtQualType to reflect its more | Fariborz Jahanian | 2009-02-17 | 1 | -18/+18 |
* | Use isa<...> instead of dyn_cast<...> where result is not needed. | Fariborz Jahanian | 2009-02-16 | 1 | -1/+1 |
* | Fixes a bug in property type encoding. | Fariborz Jahanian | 2009-02-16 | 1 | -1/+2 |
* | fix build on systems where uint64_t != unsigned long long | Chris Lattner | 2009-02-15 | 1 | -1/+1 |
* | Add -ffreestanding to suppress the implicit declaration of library builtins l... | Douglas Gregor | 2009-02-14 | 1 | -1/+1 |
* | Fixed a problem caused by foreward @class use | Fariborz Jahanian | 2009-02-14 | 1 | -0/+12 |
* | Initial implementation of arbitrary fixed-width integer types. | Eli Friedman | 2009-02-13 | 1 | -11/+36 |
* | Several cleanups: | Steve Naroff | 2009-02-12 | 1 | -6/+29 |
* | Last @encode'ing fix for objc2's nonfragile abi. | Fariborz Jahanian | 2009-02-11 | 1 | -3/+6 |
* | Patch to fix encoding in 64bit abi. With this patch | Fariborz Jahanian | 2009-02-11 | 1 | -2/+8 |
* | Start processing template-ids as types when the template-name refers | Douglas Gregor | 2009-02-09 | 1 | -0/+28 |
* | Improve the representation of template type parameters. We now | Douglas Gregor | 2009-02-05 | 1 | -13/+28 |
* | Basic representation of C++ class templates, from Andrew Sutton. | Douglas Gregor | 2009-02-04 | 1 | -0/+1 |
* | Change the ObjC type encoding for block pointer types to "@?" (for consistenc... | Steve Naroff | 2009-02-02 | 1 | -1/+1 |
* | Handle complex types in ASTContext::mergeTypes | Daniel Dunbar | 2009-01-28 | 1 | -0/+3 |
* | Finish making AST BumpPtrAllocation runtime configurable (based on -disable-f... | Steve Naroff | 2009-01-27 | 1 | -4/+4 |
* | Convert types over to placement new() that takes an ASTContext. | Steve Naroff | 2009-01-27 | 1 | -57/+30 |
* | Fixed a typo in getPreferredTypeAlign method. | Fariborz Jahanian | 2009-01-27 | 1 | -1/+1 |
* | add a new "getPreferredTypeAlign" method to return the preferred alignment | Chris Lattner | 2009-01-27 | 1 | -0/+16 |
* | Make tentative parsing of pointer-to-member decls work, and fix other stuff p... | Sebastian Redl | 2009-01-24 | 1 | -2/+3 |
* | add initial support for the gcc "alignof(decl) is the alignment of the decl | Chris Lattner | 2009-01-24 | 1 | -0/+20 |
* | Add support for declaring pointers to members. | Sebastian Redl | 2009-01-24 | 1 | -1/+50 |
* | Use the ASTContext's allocator for FunctionTypeNoProto and TypeOfExpr | Douglas Gregor | 2009-01-20 | 1 | -2/+4 |