Age | Commit message (Expand) | Author |
2011-02-22 | Emit the structure layout of the block literal parameter to a block | John McCall |
2011-02-22 | Use an unused-except-in-Debug variable. | Matt Beaumont-Gay |
2011-02-21 | Tweaks to C++0x deduced auto type support: | Richard Smith |
2011-02-20 | Implement the C++0x deduced 'auto' feature. | Richard Smith |
2011-02-20 | Add const qualifier to getTypeInfoInChars(). | Ken Dyck |
2011-02-19 | Fix PR9253, allowing attribute(aligned) to reduce the alignment of | Chris Lattner |
2011-02-15 | Convert RecordLayout::Alignment to CharUnits from bit units. No change in | Ken Dyck |
2011-02-11 | Fix a block sema bug where result type of initializer | Fariborz Jahanian |
2011-02-11 | Add a helper function, ASTContext::toBits(), that converts sizes in | Ken Dyck |
2011-02-10 | Move the check that gives functions with unique-external types unique-external | John McCall |
2011-02-09 | AST, Sema, Serialization: keep track of cudaConfigureCall | Peter Collingbourne |
2011-02-09 | Convert RecordLayout::Size to CharUnits from bits. No changes to | Ken Dyck |
2011-02-07 | A few more tweaks to the blocks AST representation: | John McCall |
2011-01-27 | Fixed parameter names. | Abramo Bagnara |
2011-01-25 | Teach TemplateSpecializationTypeLoc::initializeArgLocs() to actually | Douglas Gregor |
2011-01-20 | Fix the computation of alignment for fields of packed+aligned structs. | John McCall |
2011-01-19 | Implement support for non-type template parameter packs whose type is | Douglas Gregor |
2011-01-19 | Change the canonical representation of array types to store qualifiers on the | John McCall |
2011-01-19 | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall |
2011-01-18 | Fix some unnecessarily complicated code for canonicalizing variably-modified | John McCall |
2011-01-18 | Generalize some operations on qualifiers. QualType::getQualifiers() and | John McCall |
2011-01-15 | Add toCharUnitsInBits() to simplify the many calls to CharUnits::fromQuantity... | Ken Dyck |
2011-01-15 | Introduce a new kind of TemplateName that captures a substituted | Douglas Gregor |
2011-01-14 | Teach template template argument pack expansions to keep track of the | Douglas Gregor |
2011-01-14 | Keep track of the number of expansions to be produced from a type pack | Douglas Gregor |
2011-01-14 | Start implementing support for substitution into pack expansions that | Douglas Gregor |
2011-01-13 | Move name mangling support from CodeGen to AST. In the | Peter Collingbourne |
2011-01-12 | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad |
2011-01-12 | Slight bugfix to the attribute-distribution logic for GC attributes. | John McCall |
2011-01-06 | Introduce an AttributedType, but don't actually use it anywhere yet. | John McCall |
2011-01-05 | Replace the representation of template template argument pack | Douglas Gregor |
2011-01-05 | Implement support for template template parameter packs, e.g., | Douglas Gregor |
2010-12-30 | Expose Objective-C type encodings of declarations to libclang users. This al... | David Chisnall |
2010-12-26 | Fix for PR8695. | David Chisnall |
2010-12-25 | The -fshort-wchar option causes wchar_t to become unsigned, in addition to being | Chris Lattner |
2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall |
2010-12-23 | Add an AST representation for non-type template parameter | Douglas Gregor |
2010-12-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin |
2010-12-21 | Fix the noreturn conversion to only strip off a single level of indirection. | John McCall |
2010-12-20 | Clean up the handling of template argument packs, especially in the | Douglas Gregor |
2010-12-20 | Introduce a new type, PackExpansionType, to capture types that are | Douglas Gregor |
2010-12-19 | Motions towards simplifying how we deal with attribute-qualified function types. | John McCall |
2010-12-15 | Function types are compatible (in the C sense) if their regparms are identical. | John McCall |
2010-12-14 | Restore r121752 without modification. | John McCall |
2010-12-14 | Pull out r121752 in case it's causing the selfhost breakage. | John McCall |
2010-12-14 | Factor out most of the extra state in a FunctionProtoType into a separate | John McCall |
2010-12-10 | Added ParenType type node. | Abramo Bagnara |
2010-12-10 | It's kindof silly that ExtQuals has an ASTContext&, and we can use that | John McCall |
2010-12-10 | Move the "volatile" bit into QualType's "fast" qualifier set, | Douglas Gregor |
2010-12-07 | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad |