summaryrefslogtreecommitdiff
path: root/lib/AST/TypePrinter.cpp
Commit message (Expand)AuthorAge
* Removing an "if (this == nullptr)" check from two print methods. The conditionRichard Trieu2014-06-09
* [C++11] Use 'nullptr'. AST edition.Craig Topper2014-05-12
* Render anonymous entities as '(anonymous <thing>)' (and lambdas as '(lambda a...David Blaikie2014-04-02
* [C++11] Replacing ObjCObjectType iterators qual_begin() and qual_end() with i...Aaron Ballman2014-03-17
* [ASTPrinter] 'SEL' isn't a ObjCObjectPointer, so we don't need to handle it i...Argyrios Kyrtzidis2014-03-06
* [AST] A "Class<P>" type should not have '*' when printed out.Argyrios Kyrtzidis2014-03-05
* Print anonymous namespaces as <anonymous namespace> instead of <anonymous>David Blaikie2014-02-14
* Rename getResultType() on function and method declarations to getReturnType()Alp Toker2014-01-25
* Rename FunctionProtoType accessors from 'arguments' to 'parameters'Alp Toker2014-01-20
* Only mark dump() function definitions 'used' in debug buildsAlp Toker2014-01-04
* Add an AdjustedType sugar node for adjusting calling conventionsReid Kleckner2013-12-05
* ObjectiveC migrator. Introduce a new print policy forFariborz Jahanian2013-10-09
* Mark that qualifiers can prefix the auto type. This seems to just haveChandler Carruth2013-09-02
* Add ms_abi and sysv_abi attribute handling.Charles Davis2013-08-30
* Delete CC_Default and use the target default CC everywhereReid Kleckner2013-08-27
* Fix pretty-printing for unnamed unions.Eli Friedman2013-08-12
* Create calling convention AttributedType sugar nodesReid Kleckner2013-07-19
* [AST] Introduce a new DecayedType sugar nodeReid Kleckner2013-06-24
* DebugInfo: Support (using GNU extensions) for template template parameters an...David Blaikie2013-06-22
* Adding in parsing and the start of semantic support for __sptr and __uptr poi...Aaron Ballman2013-05-22
* Don't treat a non-deduced 'auto' type as being type-dependent. Instead, thereRichard Smith2013-04-30
* Implement C++1y decltype(auto).Richard Smith2013-04-26
* Revert r175912, "Add support for coldcc to clang" at John's request.Peter Collingbourne2013-02-23
* Add support for coldcc to clangPeter Collingbourne2013-02-22
* Streamify getNameForDiagnostic and remove the string versions of PrintTemplat...Benjamin Kramer2013-02-22
* StmtPrinter: Directly print types to the stream instead of taking a detour th...Benjamin Kramer2013-02-22
* Add intel_ocl_bicc calling convention as a function attribute to clang. The c...Guy Benyei2012-12-25
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-04
* Don't print scope qualifiers for references to a type defined locally in a fu...Eli Friedman2012-10-24
* Remove check which incorrectly suppressed printing an identifier in type prin...Eli Friedman2012-10-18
* Add pnaclcall convention to Native Client targets.Derek Schuff2012-10-16
* Pass PrintingPolicy by reference, copying it isn't cheap.Benjamin Kramer2012-09-27
* Provide a special-case diagnostic when two class member functions instantiateRichard Smith2012-07-13
* Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h.Benjamin Kramer2012-07-04
* From Philippe Canal:Axel Naumann2012-06-29
* Use raw_ostream in TypePrinter and eliminate uses of temporary std::strings.Argyrios Kyrtzidis2012-05-05
* Make BuiltinType::getName return a StringRef and introduce BuiltinType::getNa...Argyrios Kyrtzidis2012-05-05
* Implement support for null non-type template arguments for non-typeDouglas Gregor2012-04-06
* When overload resolution picks an implicitly-deleted special memberDouglas Gregor2012-02-15
* Track whether a function type has a trailing return type as type sugar. Use thisRichard Smith2012-02-10
* Revise the SplitQualType interface to make it its own thing instead ofJohn McCall2012-02-08
* Introduce basic ASTs for lambda expressions. This covers:Douglas Gregor2012-02-07
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-20
* Remove unnecessary default cases in switches over enums.David Blaikie2012-01-17
* TypePrinter: print OpenCL address space names. Patch by RichardPeter Collingbourne2011-11-08
* Add a printing policy flag to suppress printing "<anonymous>::" priorDouglas Gregor2011-11-03
* Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman2011-10-06
* When 'bool' is not a built-in type but is defined as a macro, printDouglas Gregor2011-09-27
* Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ...Argyrios Kyrtzidis2011-06-24
* Automatic Reference Counting.John McCall2011-06-15