summaryrefslogtreecommitdiff
path: root/lib/Sema/IdentifierResolver.cpp
Commit message (Expand)AuthorAge
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-26
* [C++11] Replacing iterators redecls_begin() and redecls_end() with iterator_r...Aaron Ballman2014-03-06
* Per [dcl.meaning]p1, a name in an inline namespace can be redeclared using aRichard Smith2013-12-05
* Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a ...Ted Kremenek2013-10-08
* Delete dead code.Eli Friedman2013-06-19
* [Modules] Cope better with top-level declarations loaded after being declared...Douglas Gregor2013-02-11
* IdentifierResolver: Remove an unnecessary include and an unused parameter.Nico Weber2012-12-17
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-04
* Fix more try scoping bugs introduced by r167650.David Blaikie2012-11-12
* Handle redeclarations of catch variables in catch blocks.David Blaikie2012-11-10
* PR14296: function parameter name collisions in function try/catchDavid Blaikie2012-11-10
* Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie2012-06-06
* Remove ref/value inconsistency in redecl_iterator.David Blaikie2012-05-01
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-11
* Reapply r151638 and r151641.James Molloy2012-02-29
* Revert r151638 because it causes assertion hit on PCH creation for Cocoa.hArgyrios Kyrtzidis2012-02-28
* Correctly track tags and enum members defined in the prototype of a function,...James Molloy2012-02-28
* Only mark an IdentifierInfo as having changed since deserializationDouglas Gregor2012-01-24
* Keep track of all declarations of an Objective-C class (both forwardDouglas Gregor2011-12-15
* Make the loading of information attached to an IdentifierInfo from anDouglas Gregor2011-10-27
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-23
* Fix the insertion of label declarations into the identifier chain inDouglas Gregor2011-03-24
* When we're inserting a synthesized label declaration for aDouglas Gregor2011-03-16
* When synthesizing a label declaration based on a goto statement thatDouglas Gregor2011-03-14
* Support explicit template specialization and instantiation for membersDouglas Gregor2011-03-07
* Rename DeclContext::getLookupContext to getRedeclContext and change its seman...Sebastian Redl2010-08-31
* Struggle mightily against header inclusion in Sema.h.John McCall2010-08-24
* DeclPtrTy -> Decl *John McCall2010-08-21
* More PCH -> AST renaming.Sebastian Redl2010-08-18
* Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor2010-08-12
* Correctly deal with using names for both functions and structs in chained PCH.Sebastian Redl2010-07-30
* Optimize the implementation of IdDeclInfo pooling in the IdentifierResolver.John McCall2010-02-15
* Eliminate dead code.Eli Friedman2010-01-02
* Remove tabs, and whitespace cleanups.Mike Stump2009-09-09
* Add DeclContext::Equals to compare declaration contexts based on their primar...Douglas Gregor2009-09-01
* Make sure to compare primary declaration contexts when determining whether a ...Douglas Gregor2009-08-26
* Lazy deserialization of the declaration chains associated withDouglas Gregor2009-04-21
* Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for aChris Lattner2009-03-28
* Switch attributes to be allocated from the declcontext bump pointer just likeChris Lattner2009-03-04
* Rework the way we find locally-scoped external declarations when weDouglas Gregor2009-03-02
* Now that ObjC decls have DeclContexts too, remove an ugly hack from Identifie...Argyrios Kyrtzidis2009-02-17
* Eliminated LookupCriteria, whose creation was causing a bottleneck forDouglas Gregor2009-01-30
* Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor2009-01-20
* Unify the code for defining tags in C and C++, so that we alwaysDouglas Gregor2009-01-08
* This is a large/messy diff that unifies the ObjC AST's with DeclContext.Steve Naroff2009-01-08
* Allow Objective-C entities to be declared within a transparent contextDouglas Gregor2009-01-06
* Introduce support for "transparent" DeclContexts, which areDouglas Gregor2009-01-05
* Parser support for C++ try-catch.Sebastian Redl2008-12-21
* Unifies the name-lookup mechanisms used in various parts of the ASTDouglas Gregor2008-12-11
* Rename: FindContext -> FindDeclVisibleInContext.Zhongxing Xu2008-12-05