Age | Commit message (Expand) | Author |
2011-11-30 | Teach the preprocessor how to handle module import declarations that | Douglas Gregor |
2011-11-30 | Switch the module-loading interfaces and parser from a simple | Douglas Gregor |
2011-11-29 | Escape strings when printing module maps, for silly operating systems | Douglas Gregor |
2011-11-29 | Switch on-demand module building over to use module maps, always. When | Douglas Gregor |
2011-11-29 | Teach the module import mechanism how to rebuild modules expressed via | Douglas Gregor |
2011-11-29 | Expose the printing of module maps as part of the ModuleMap::Module | Douglas Gregor |
2011-11-28 | When attempting to load a module that is not in the module cache, | Douglas Gregor |
2011-11-23 | Remove an assertion that is not valid if we cancel parsing. | Argyrios Kyrtzidis |
2011-11-22 | Remove assert from hot code path and add a clarifying comment. | Benjamin Kramer |
2011-11-22 | Lexer: Don't throw away the hard work SSE did to find a slash. | Benjamin Kramer |
2011-11-22 | implement __has_feature(address_sanitizer); also use LangOpts.AddressSanitize... | Kostya Serebryany |
2011-11-20 | Allow preprocessor callbacks to recover from a "file not found" error, | Douglas Gregor |
2011-11-17 | When making a suggestion regarding which module to load rather than | Douglas Gregor |
2011-11-17 | Add the notion of "framework" modules to module maps. Framework | Douglas Gregor |
2011-11-17 | Actually free memory for the module maps | Douglas Gregor |
2011-11-17 | When we're loading a framework header, first try to turn the framework | Douglas Gregor |
2011-11-16 | A module with an umbrella header assumes that all of the headers in | Douglas Gregor |
2011-11-16 | Add support for building a module from a module map to the -cc1 | Douglas Gregor |
2011-11-14 | Fix a regression in wide character codegen. See PR11369. | Nico Weber |
2011-11-13 | Silence unused variable warning. | Benjamin Kramer |
2011-11-12 | Implement a minor optimization when loading module maps to satisfy a | Douglas Gregor |
2011-11-12 | When searching for a module, speculatively load module maps to see if | Douglas Gregor |
2011-11-11 | Teach the search for modules to consider modules described by a module | Douglas Gregor |
2011-11-11 | Wire up the mapping from header files mentioned in module maps over to | Douglas Gregor |
2011-11-11 | Resolve the header files named in module map "header" and "umbrella" | Douglas Gregor |
2011-11-11 | Introduce basic support for parsing module map files. | Douglas Gregor |
2011-11-11 | I predict that HeaderSearch will need the ability to generate | Douglas Gregor |
2011-11-05 | Fix one last place where we weren't writing into a string literal consistently. | Eli Friedman |
2011-11-02 | Use native endianness for writing out character escapes to the result buffer ... | Eli Friedman |
2011-11-01 | Perform proper conversion for strings encoded in the source file as UTF-8. (... | Eli Friedman |
2011-11-01 | Add __has_feature(cxx_raw_string_literals) and | Douglas Gregor |
2011-11-01 | Add __has_feature(cxx_defaulted_functions) for querying "defaulted | Douglas Gregor |
2011-10-27 | Make the loading of information attached to an IdentifierInfo from an | Douglas Gregor |
2011-10-25 | [PCH] When visiting preprocessed entities, make it possible to avoid deserial... | Argyrios Kyrtzidis |
2011-10-18 | Add a __has_feature check for arc_cf_code_audited. | John McCall |
2011-10-18 | Argyrios says this change is required for safety under PTH. | John McCall |
2011-10-18 | Fix several bugs with #pragma clang arc_cf_code_audited and macros. | John McCall |
2011-10-17 | Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! | Ted Kremenek |
2011-10-17 | For modules, all macros that aren't include guards are implicitly | Douglas Gregor |
2011-10-15 | -Wc++98-compat warnings for the lexer. | Richard Smith |
2011-10-14 | Add c_alignas and cxx_alignas features | Peter Collingbourne |
2011-10-14 | Add a preprocessor callback that is invoked every time the 'defined' | Douglas Gregor |
2011-10-12 | Implement built-in macro '__has_warning', which allows one to query if a warn... | Ted Kremenek |
2011-10-12 | We do parse hexfloats in C++11; make it actually work. | Douglas Gregor |
2011-10-12 | Handle the case where preprocessor entities are not received in order, | Argyrios Kyrtzidis |
2011-10-12 | Handle Perforce-style conflict markers like normal conflict markers. Perforce | Richard Smith |
2011-10-11 | Add a -Wc++0x-compat warning for C++11 keywords used as identifiers when in | Richard Smith |
2011-10-11 | For the FileChanged Preprocessor callback, when exiting a file, pass its FileID. | Argyrios Kyrtzidis |
2011-10-10 | A couple random preprocessor changes that got ported from C99 to C++11. | Eli Friedman |
2011-10-03 | Fixed exapnsion range for # and ##. | Abramo Bagnara |