summaryrefslogtreecommitdiffstats
path: root/lib/AST/ASTImporter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Implement support for null non-type template arguments for non-typeDouglas Gregor2012-04-061-0/+2
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-111-5/+5
* Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall2012-03-101-0/+1
* [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart().Daniel Dunbar2012-03-091-6/+6
* objective-c: provide fixit hint when atomic property does notFariborz Jahanian2012-02-291-0/+1
* Teach CXXRecordDecl::hasIrrelevantDestructor to check the base classes andRichard Smith2012-02-251-1/+15
* modern objc translator. Finish off first cut of theFariborz Jahanian2012-02-201-2/+6
* Within the body of a lambda expression, decltype((x)) for anDouglas Gregor2012-02-121-1/+5
* Make sure that imported definitions get completed before we addDouglas Gregor2012-02-011-31/+100
* Added source location for the template keyword in AST template-id expressions.Abramo Bagnara2012-01-271-0/+1
* Only try to import a definition if there is an definition to import.Douglas Gregor2012-01-251-2/+5
* When importing a RecordDecl as a DeclContext, make sure that we pullDouglas Gregor2012-01-241-8/+38
* Teach the AST importer about redeclaration chains for Objective-CDouglas Gregor2012-01-241-152/+197
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-8/+3
* Switch NamespaceDecl from its own hand-rolled redeclaration chain overDouglas Gregor2012-01-071-1/+3
* Eliminate the ForwardDecl/InitiallyForwardDecl bits from ObjCProtocolDecl. Th...Douglas Gregor2012-01-011-2/+1
* Eliminate ObjCForwardProtocolDecl, which is redundant now thatDouglas Gregor2012-01-011-45/+0
* Wire up redeclaration chains for Objective-C protocols, so that bothDouglas Gregor2012-01-011-2/+1
* Move the data that corresponds to the definition of a protocol into aDouglas Gregor2012-01-011-2/+5
* Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDeclDouglas Gregor2011-12-271-30/+0
* constexpr handling improvements. Produce detailed diagnostics when a 'constexpr'Richard Smith2011-12-191-0/+5
* Fix chaining of ObjCInterfaceDecl redeclarationsDouglas Gregor2011-12-161-1/+2
* Keep track of all declarations of an Objective-C class (both forwardDouglas Gregor2011-12-151-1/+0
* Move the definition-specific data of ObjCInterfaceDecl into aDouglas Gregor2011-12-151-65/+75
* Replace all comparisons between ObjCInterfaceDecl pointers with callsDouglas Gregor2011-12-151-1/+1
* Eliminate the vistigial ObjCClassDecl::ObjCClassRef, and inline itsDouglas Gregor2011-12-141-5/+5
* Save category name loc in ObjCCategoryImplDecl, patch by Jason Haslam!Argyrios Kyrtzidis2011-12-091-1/+3
* Added a clause to the ASTImporter allowing it toSean Callanan2011-11-171-0/+10
* [PCH] When completing an objc forward reference, do not serialize the chain o...Argyrios Kyrtzidis2011-11-121-3/+5
* When importing an ObjCInterfaceDecl, ensure thatSean Callanan2011-11-111-0/+11
* Teach the ASTImporter to import DefinitionData bits.Douglas Gregor2011-11-031-3/+43
* Fix various minor issues find via unreachable code warnings, fromDouglas Gregor2011-11-021-1/+1
* I added a new function to DeclContext calledSean Callanan2011-10-211-23/+23
* Macro metaprogramming for builtin types.John McCall2011-10-181-52/+11
* Keep track when a ObjC interface/protocol was initially created as a forward ...Argyrios Kyrtzidis2011-10-171-1/+2
* Add a new placeholder type to represent "unbridged"John McCall2011-10-171-0/+2
* Teach the ASTImporter to perform DeclContext lookups in a way thatDouglas Gregor2011-10-151-77/+77
* Provide half floating point support as a storage only type.Anton Korobeynikov2011-10-141-0/+1
* Teach the ASTImporter not to import redundant fields.Douglas Gregor2011-10-141-50/+101
* Constant expression evaluation refactoring:Richard Smith2011-10-101-19/+9
* Rename TagDecl::isDefinition -> isCompleteDefinitionJohn McCall2011-10-071-6/+7
* Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman2011-10-061-1/+9
* Added a flag to identify resolved overloaded function references.Abramo Bagnara2011-10-051-8/+11
* Improve location fidelity of objc decls.Argyrios Kyrtzidis2011-10-041-10/+12
* Allow getting all source locations of selector identifiers in a ObjCMethodDecl.Argyrios Kyrtzidis2011-10-031-3/+3
* Pass from the parser the locations of selector identifiers when creatingArgyrios Kyrtzidis2011-10-031-0/+1
* Don't keep NumSelectorArgs in the ObjCMethodDecl, the number can be derived f...Argyrios Kyrtzidis2011-10-031-2/+1
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-1/+1
* Fix the ASTImporter's lookup for anonymous structs/unions that get aDouglas Gregor2011-09-221-2/+2
* ArrayRef-ifying Function/BlockDecl's setParamsDavid Blaikie2011-09-211-1/+1