| Age | Commit message (Expand) | Author |
| 2013-05-03 | When building a module, forward diagnostics to the outer diagnostic consumer. | Douglas Gregor |
| 2013-05-02 | When looking for the module associated with one of our magical builtin header... | Douglas Gregor |
| 2013-04-05 | Add a module testcase with a using declaration. | Rafael Espindola |
| 2013-04-04 | Add hasExternalLinkageUncached back with the test that Richard provided, but | Rafael Espindola |
| 2013-04-03 | <rdar://problem/13560075> Teach name lookup for builtin names to find hidden ... | Douglas Gregor |
| 2013-04-03 | [preprocessor] Allow comparing two macro definitions syntactically instead of... | Argyrios Kyrtzidis |
| 2013-04-03 | [modules] If a submodule has re-definitions of the same macro, only the last ... | Argyrios Kyrtzidis |
| 2013-03-27 | [modules] Make sure enabled diagnostic pragmas inside the module don't affect... | Argyrios Kyrtzidis |
| 2013-03-22 | <rdar://problem/13479214> Make Clang's <stddef.h> robust against system heade... | Douglas Gregor |
| 2013-03-21 | <rdar://problem/13037793> Allow the names of modules to differ from the name ... | Douglas Gregor |
| 2013-03-20 | <rdar://problem/12368093> Extend module maps with a 'conflict' declaration, a... | Douglas Gregor |
| 2013-03-20 | <rdar://problem/10796651> Introduce configuration macros into module maps. | Douglas Gregor |
| 2013-03-19 | <rdar://problem/13363214> Eliminate race condition between module rebuild and... | Douglas Gregor |
| 2013-02-18 | Ensure that the identifier chains have the most recent declaration after modu... | Douglas Gregor |
| 2013-02-13 | Change this comment to helpfully explain why it's there. | Nick Lewycky |
| 2013-02-12 | Order the methods in the global method pool based on when they become visible... | Douglas Gregor |
| 2013-02-12 | Fix a bug reduced from a crash when trying to use modules with libc++. We check | Richard Smith |
| 2013-02-12 | Remove an assert which triggers when a decl context in a module hits the 'has | Richard Smith |
| 2013-02-11 | [Modules] Cope better with top-level declarations loaded after being declared... | Douglas Gregor |
| 2013-02-09 | Ensure that type definitions present in just-loaded modules are | Douglas Gregor |
| 2013-02-08 | Fix test failure by making sure this file isn't identical to any other file | Nick Lewycky |
| 2013-02-08 | Fix stack overflow and improve performance when a module contains many | Richard Smith |
| 2013-02-08 | Teach subframework header lookup to suggest modules <rdar://problem/13176200>. | Douglas Gregor |
| 2013-02-07 | Add missing header from r174648 | Douglas Gregor |
| 2013-02-07 | Retain all hidden methods in the global method pool, because they may become ... | Douglas Gregor |
| 2013-02-07 | Fix handling of module imports adding names to a DeclContext after qualified | Richard Smith |
| 2013-02-06 | Detect when we end up trying to load conflicting module files. | Douglas Gregor |
| 2013-02-01 | Merge "special" types from different modules in the AST reader. | Douglas Gregor |
| 2013-01-17 | Treat hidden Objective-C protocol definitions as if they were | Douglas Gregor |
| 2013-01-16 | Rework the traversal of Objective-C categories and extensions to | Douglas Gregor |
| 2013-01-16 | Teach global selector lookup to ignore hidden methods, which occur | Douglas Gregor |
| 2013-01-14 | When forming the link options for an imported module, also include the | Douglas Gregor |
| 2013-01-14 | Infer "link" lines for top-level frameworks. Essentially, a framework | Douglas Gregor |
| 2013-01-14 | Implement parsing, AST, (de-)serialization, and placeholder global | Douglas Gregor |
| 2013-01-09 | When name lookup for a redeclaration finds declarations that are known | Douglas Gregor |
| 2012-12-11 | Use @import rather than @__experimental_modules_import, since the | Douglas Gregor |
| 2012-11-15 | If an excluded header does not exist, just ignore it | Douglas Gregor |
| 2012-11-07 | When loading a module fails because it is out of date, rebuild that | Douglas Gregor |
| 2012-11-06 | Introduce inferred framework modules into the module map file, | Douglas Gregor |
| 2012-11-05 | Have the parser initialize Sema before it consumes the first | Douglas Gregor |
| 2012-10-19 | Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost... | Andy Gibbs |
| 2012-10-15 | Introduce the notion of excluded headers into the module map | Douglas Gregor |
| 2012-10-12 | Add missing header from 165821 | Douglas Gregor |
| 2012-10-12 | Sanitize the names of modules determined based on the names of headers | Douglas Gregor |
| 2012-10-12 | Track which particular submodule #undef's a macro, so that the actual | Douglas Gregor |
| 2012-10-11 | Diagnose the expansion of ambiguous macro definitions. This can happen | Douglas Gregor |
| 2012-10-11 | Deserialize macro history when we deserialize an identifier that has | Douglas Gregor |
| 2012-10-09 | Rework the (de-)serialization of macros, as stored in | Douglas Gregor |
| 2012-10-09 | When we load a function or method body from an AST file, we check | Douglas Gregor |
| 2012-10-02 | Add redecls into their lexical DeclContext: this is what they assert on, and ... | Axel Naumann |