Age | Commit message (Expand) | Author |
2010-10-22 | Substantially revise how clang computes the visibility of a declaration to | John McCall |
2010-10-14 | At Fariborz's request, a somewhat cleaner bit-combining hack. | John McCall |
2010-10-14 | Compress bit fields / enums from ReferenceType, BuiltinType, FunctionType, and | John McCall |
2010-10-13 | Introduce a bit into Type that keeps track of whether there are any | Douglas Gregor |
2010-10-13 | Compute whether a type is variably modified as we build the type, | Douglas Gregor |
2010-10-12 | Progress. | John McCall |
2010-10-08 | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor |
2010-10-06 | Use a more conventional/efficient implementation for isEnumeralType() | John McCall |
2010-09-08 | Reverse r113397 until we decide what to do with | Fariborz Jahanian |
2010-09-08 | Fix a crash when overloading id with objc_object*. | Fariborz Jahanian |
2010-09-08 | Allow (cv) void and incomplete arrays to be passed to the type traits. | Sebastian Redl |
2010-09-05 | make clang print types as "const int *" instead of "int const*", | Chris Lattner |
2010-09-04 | tidy up | Chris Lattner |
2010-09-03 | Add symantic support for the Pascal calling convention via | Dawn Perchik |
2010-08-19 | Fix for PR7911 and PR7921: make isIntegralOrEnumerationType return false | Eli Friedman |
2010-08-18 | Emit an error if an array is too large. We're slightly more strict | Douglas Gregor |
2010-08-11 | Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, | Douglas Gregor |
2010-08-09 | - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for for... | Sebastian Redl |
2010-08-05 | Get rid of isObjectType; when C++ says "object type", it generally | Eli Friedman |
2010-08-05 | Drop an unjustified limitation from Type::isObjectType(). Fixes PR7801 and do... | Sebastian Redl |
2010-08-02 | Remove mutable data on TagType and InjectedClassNameType, by instead walking ... | Sebastian Redl |
2010-07-29 | Teach isIncompleteType() to look through sugar when it is dealing with | Douglas Gregor |
2010-07-25 | Move Type destructor out-of-line | Douglas Gregor |
2010-07-25 | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor |
2010-07-23 | Vectors are not integer types, so the type system should not classify | Douglas Gregor |
2010-07-13 | Whenever we're creating an expression that is typically an rvalue | Douglas Gregor |
2010-07-13 | Silence Doug's favorite GCC warning. | Chandler Carruth |
2010-07-13 | When forming a function call or message send expression, be sure to | Douglas Gregor |
2010-06-22 | Vector types are not arithmetic types, either. Note that we now ban | Douglas Gregor |
2010-06-22 | Teach Type::isRealType() that vector types are never real types. All | Douglas Gregor |
2010-06-22 | Type Type::isRealFloatingType() that vectors are not floating-point | Douglas Gregor |
2010-06-22 | Change Type::isFloatingType() to reflect the actual definition of a | Douglas Gregor |
2010-06-16 | Give Type::isIntegralType() an ASTContext parameter, so that it | Douglas Gregor |
2010-06-16 | Introduce Type::isIntegralOrEnumerationType(), to cover those places | Douglas Gregor |
2010-06-13 | TemplateSpecializationType's isCurrentInstantiation bit can be derived | John McCall |
2010-06-11 | Don't store ASTContext references in the TST nodes just to support profiling. | John McCall |
2010-06-11 | Split DependentNameType into two types. DependentNameType represents the | John McCall |
2010-05-23 | It turns out that people love using VLAs in templates, too. Weaken our | Douglas Gregor |
2010-05-19 | Cache the linkage of a type within its canonical type, eliminating | Douglas Gregor |
2010-05-18 | Add support for Microsoft's __thiscall, from Steven Watanabe! | Douglas Gregor |
2010-05-17 | Comments and assorted cleanups for the Objective C type AST. | John McCall |
2010-05-15 | Substantially alter the design of the Objective C type AST by introducing | John McCall |
2010-05-13 | add a couple of key functions for classes without them. | Chris Lattner |
2010-05-11 | Merged Elaborated and QualifiedName types. | Abramo Bagnara |
2010-05-11 | A DeclRefExpr that refers to a member function or a static data member | Douglas Gregor |
2010-04-27 | During template instantiation, set the naming class of | Douglas Gregor |
2010-04-27 | Make the InjectedClassNameType the canonical type of the current instantiation | John McCall |
2010-04-26 | Introduce Type::isStructureOrClassType(), which does the obvious | Douglas Gregor |
2010-03-31 | Change the representation of dependent elaborated-type-specifiers | Douglas Gregor |
2010-03-31 | Remove the AST statistics tracking I added yesterday; it didn't pan out. | Douglas Gregor |