| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | PR25271: When attaching default template arguments to redeclarations of a | Richard Smith | 2016-02-04 | 1 | -0/+2 |
* | Merge templated static member variables, fixes http://llvm.org/pr26179. | Yaron Keren | 2016-01-22 | 1 | -2/+18 |
* | Only instantiate a default argument once. | John McCall | 2016-01-06 | 1 | -0/+15 |
* | [TrailingObjects] Convert Decl* classes. | James Y Knight | 2015-12-29 | 1 | -6/+9 |
* | [modules] If the semantic and lexical DC of a decl are the same, write out the | Richard Smith | 2015-12-11 | 1 | -0/+4 |
* | Use llvm::make_range to reduce mentions of iterator type. NFC | Craig Topper | 2015-12-06 | 1 | -3/+2 |
* | [Sema] Implement __make_integer_seq | David Majnemer | 2015-11-04 | 1 | -0/+5 |
* | Fix Clang-tidy modernize-use-nullptr warnings in source directories; other mi... | Hans Wennborg | 2015-10-06 | 1 | -9/+11 |
* | Remove trivial dtor that was making uses of the copy ctor -Wdeprecated unclean | David Blaikie | 2015-09-28 | 1 | -2/+1 |
* | Re-commit r246497 (and dependent changes r246524 and r246521), reverted in | Richard Smith | 2015-09-01 | 1 | -8/+5 |
* | Reverting r246497 (which requires also reverting r246524 and r246521 to avoid... | Aaron Ballman | 2015-09-01 | 1 | -5/+8 |
* | [modules] Rework serialized DeclContext lookup table management. Instead of | Richard Smith | 2015-08-31 | 1 | -8/+5 |
* | [MS ABI] Correctly mangle classes without names for linkage purposes | David Majnemer | 2015-08-31 | 1 | -6/+3 |
* | [modules] Further simplification and speedup of redeclaration chain loading. | Richard Smith | 2015-08-22 | 1 | -34/+35 |
* | [modules] Remove some dead code after r245779. | Richard Smith | 2015-08-22 | 1 | -168/+35 |
* | [modules] Rearrange how redeclaration chains are loaded, to remove a walk over | Richard Smith | 2015-08-22 | 1 | -40/+37 |
* | [modules] When loading a template specialization, re-canonicalize its template | Richard Smith | 2015-08-09 | 1 | -4/+7 |
* | [modules] Remove now-unused MergedLookups map. | Richard Smith | 2015-08-06 | 1 | -20/+0 |
* | [modules] Defer setting up the lookup table for a DeclContext until we can | Richard Smith | 2015-08-06 | 1 | -39/+33 |
* | [AST] ArrayRefize BlockDecl::setCaptures. No functionality change intended. | Benjamin Kramer | 2015-08-05 | 1 | -2/+1 |
* | [modules] Make IndirectFieldDecl mergeable to avoid lookup ambiguity when the... | Richard Smith | 2015-08-04 | 1 | -0/+9 |
* | [modules] Add an assert for redeclarations that we never added to their redecl | Richard Smith | 2015-07-27 | 1 | -17/+30 |
* | [Modules] Wrap the main ModuleManager visitor in a function_ref. | Benjamin Kramer | 2015-07-25 | 1 | -12/+5 |
* | [modules] Switch to the normal reverse postorder visitation algorithm when co... | Richard Smith | 2015-07-15 | 1 | -75/+80 |
* | Minor simplification, no functionality change. | Richard Smith | 2015-07-12 | 1 | -14/+1 |
* | [modules] Improve performance when there is a local declaration of an entity | Richard Smith | 2015-07-12 | 1 | -17/+27 |
* | Implement variance for Objective-C type parameters. | Douglas Gregor | 2015-07-07 | 1 | -0/+2 |
* | Substitute type arguments into uses of Objective-C interface members. | Douglas Gregor | 2015-07-07 | 1 | -0/+1 |
* | Handle Objective-C type arguments. | Douglas Gregor | 2015-07-07 | 1 | -2/+1 |
* | Parsing, semantic analysis, and AST for Objective-C type parameters. | Douglas Gregor | 2015-07-07 | 1 | -1/+36 |
* | [modules] Merging support for specializations of a function template. This very | Richard Smith | 2015-07-01 | 1 | -5/+5 |
* | [modules] Remove some out-of-date (fixed) FIXMEs. | Richard Smith | 2015-07-01 | 1 | -9/+0 |
* | [ObjC] Add NSValue support for objc_boxed_expressions | Alex Denisov | 2015-06-26 | 1 | -1/+9 |
* | [modules] Properly merge visibility of class definitions that got merged while | Richard Smith | 2015-06-25 | 1 | -5/+7 |
* | Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). | Alexander Kornienko | 2015-06-22 | 1 | -5/+5 |
* | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-22 | 1 | -5/+5 |
* | [modules] When determining whether a definition of a class is visible, check ... | Richard Smith | 2015-06-20 | 1 | -0/+3 |
* | [modules] Refactor and slightly simplify class definition merging. | Richard Smith | 2015-06-20 | 1 | -48/+26 |
* | Extend type nullability qualifiers for Objective-C. | Douglas Gregor | 2015-06-19 | 1 | -1/+3 |
* | [modules] Merging support for enums with a local definition prior to the first | Richard Smith | 2015-06-18 | 1 | -43/+54 |
* | [modules] Ensure that if we merge the definitions of two enumerations, that | Richard Smith | 2015-06-17 | 1 | -17/+23 |
* | [modules] Fix typo in default argument merging. | Richard Smith | 2015-06-17 | 1 | -3/+3 |
* | [modules] Track all default template arguments for a given parameter across | Richard Smith | 2015-06-10 | 1 | -2/+1 |
* | [modules] Reconstruct template default argument inheritance on reload rather | Richard Smith | 2015-06-10 | 1 | -17/+44 |
* | Refactor storage of default template arguments. | Richard Smith | 2015-06-10 | 1 | -11/+24 |
* | Allow skipping imports in the module visitor. | Manuel Klimek | 2015-05-20 | 1 | -8/+39 |
* | [AST] Put VarDeclBitfields on a diet | David Majnemer | 2015-05-19 | 1 | -7/+9 |
* | [modules] Add local submodule visibility support for declarations. | Richard Smith | 2015-05-15 | 1 | -15/+30 |
* | [modules] Stop trying to fake up a linear MacroDirective history. | Richard Smith | 2015-04-29 | 1 | -4/+4 |
* | Revert file unintentionally changed in r235162. | Daniel Jasper | 2015-04-17 | 1 | -1/+1 |