aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs
AgeCommit message (Expand)Author
2013-05-03When building a module, forward diagnostics to the outer diagnostic consumer.Douglas Gregor
2013-05-02When looking for the module associated with one of our magical builtin header...Douglas Gregor
2013-04-05Add a module testcase with a using declaration.Rafael Espindola
2013-04-04Add hasExternalLinkageUncached back with the test that Richard provided, butRafael 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-18Ensure that the identifier chains have the most recent declaration after modu...Douglas Gregor
2013-02-13Change this comment to helpfully explain why it's there.Nick Lewycky
2013-02-12Order the methods in the global method pool based on when they become visible...Douglas Gregor
2013-02-12Fix a bug reduced from a crash when trying to use modules with libc++. We checkRichard Smith
2013-02-12Remove an assert which triggers when a decl context in a module hits the 'hasRichard Smith
2013-02-11[Modules] Cope better with top-level declarations loaded after being declared...Douglas Gregor
2013-02-09Ensure that type definitions present in just-loaded modules areDouglas Gregor
2013-02-08Fix test failure by making sure this file isn't identical to any other fileNick Lewycky
2013-02-08Fix stack overflow and improve performance when a module contains manyRichard Smith
2013-02-08Teach subframework header lookup to suggest modules <rdar://problem/13176200>.Douglas Gregor
2013-02-07Add missing header from r174648Douglas Gregor
2013-02-07Retain all hidden methods in the global method pool, because they may become ...Douglas Gregor
2013-02-07Fix handling of module imports adding names to a DeclContext after qualifiedRichard Smith
2013-02-06Detect when we end up trying to load conflicting module files.Douglas Gregor
2013-02-01Merge "special" types from different modules in the AST reader.Douglas Gregor
2013-01-17Treat hidden Objective-C protocol definitions as if they wereDouglas Gregor
2013-01-16Rework the traversal of Objective-C categories and extensions toDouglas Gregor
2013-01-16Teach global selector lookup to ignore hidden methods, which occurDouglas Gregor
2013-01-14When forming the link options for an imported module, also include theDouglas Gregor
2013-01-14Infer "link" lines for top-level frameworks. Essentially, a frameworkDouglas Gregor
2013-01-14Implement parsing, AST, (de-)serialization, and placeholder globalDouglas Gregor
2013-01-09When name lookup for a redeclaration finds declarations that are knownDouglas Gregor
2012-12-11Use @import rather than @__experimental_modules_import, since theDouglas Gregor
2012-11-15If an excluded header does not exist, just ignore itDouglas Gregor
2012-11-07When loading a module fails because it is out of date, rebuild thatDouglas Gregor
2012-11-06Introduce inferred framework modules into the module map file,Douglas Gregor
2012-11-05Have the parser initialize Sema before it consumes the firstDouglas Gregor
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost...Andy Gibbs
2012-10-15Introduce the notion of excluded headers into the module mapDouglas Gregor
2012-10-12Add missing header from 165821Douglas Gregor
2012-10-12Sanitize the names of modules determined based on the names of headersDouglas Gregor
2012-10-12Track which particular submodule #undef's a macro, so that the actualDouglas Gregor
2012-10-11Diagnose the expansion of ambiguous macro definitions. This can happenDouglas Gregor
2012-10-11Deserialize macro history when we deserialize an identifier that hasDouglas Gregor
2012-10-09Rework the (de-)serialization of macros, as stored inDouglas Gregor
2012-10-09When we load a function or method body from an AST file, we checkDouglas Gregor
2012-10-02Add redecls into their lexical DeclContext: this is what they assert on, and ...Axel Naumann