- 72c26c0 Accept #pragma warning(push, 0) without warning by Reid Kleckner · 11 years ago
- 44868f5 Mark lambda init-captures as complete. by Richard Smith · 11 years ago
- 629bc52 Mark variable template implementation as complete. Nearly all of the credit by Richard Smith · 11 years ago
- 2add97e NumericLiteralParser::ParseNumberStartingWithZero(): Try to appease MSC16's miscompilation. by NAKAMURA Takumi · 11 years ago
- 9a17677 Per updates to D3781, allow underscore under ' in a pp-number, and allow ' in a #line directive. by Richard Smith · 11 years ago
- 7f270f0 Fix buildbot breakage. by Richard Smith · 11 years ago
- 064c3f1 Replace a bool with an enum for clarity, based on review comment from James Dennett. by Richard Smith · 11 years ago
- 859b622 Implement C++1y digit separator proposal (' as a digit separator). This is not by Richard Smith · 11 years ago
- 48b80c7 PR17359: Fix off-by-one OOB on _Pragma("") and an unescaping bug by Reid Kleckner · 11 years ago
- 6fde25e Avoid a signed/unsigned comparison warning with compilers that don't know how by Richard Smith · 11 years ago
- 733bac2 Fix uninitialized value bug discovered buy msan buildbot. by Daniel Jasper · 11 years ago
- 1b8840c Add -fmodule-map-file option. by Daniel Jasper · 11 years ago
- ddd2dfc Module use declarations (II) by Daniel Jasper · 11 years ago
- 06dd2b3 Handle standard libraries that miss out the space when defining the standard by Richard Smith · 11 years ago
- 0f238a6 Fix use-after-free in r190980. by Eli Friedman · 11 years ago
- d2f9308 Make Preprocessor::Lex non-recursive. by Eli Friedman · 11 years ago
- 83b6397 Fix CharByteWidth assertion in LiteralSupport. by Eli Friedman · 11 years ago
- 585c84c Add a define for the ObjFW runtime ABI version. by Benjamin Kramer · 11 years ago
- fa7d53f Make __has_extension(c_thread_local) work. by Ed Schouten · 11 years ago
- 2ee042d Lex and ignore Microsoft's #pragma warning(...) by Reid Kleckner · 11 years ago
- 0f599ac Simplify code with the in place path::native. No functionality change. by Benjamin Kramer · 11 years ago
- 5f0a352 Support for modular module-map-files by Daniel Jasper · 11 years ago
- 263cea4 Use new UnicodeCharSet interface. by Alexander Kornienko · 11 years ago
- a601579 Fix "//" comments with -traditional-cpp in C++. by Eli Friedman · 11 years ago
- 344472e Use pop_back_val() instead of both back() and pop_back(). by Robert Wilhelm · 11 years ago
- 7865b8e Respect -Wnewline-eof even in C++11 mode. by Jordan Rose · 11 years ago
- 2414697 Split isFromMainFile into two functions. by Eli Friedman · 11 years ago
- c3d9da2 Revert r188863 which could propose wrong fixits for multibyte character literals. by Nick Lewycky · 11 years ago
- 6347a8a Issue fixits replacing invalid character literals with the equivalent \xNN by Nick Lewycky · 11 years ago
- f369388 No functionality change. Adjust a bunch of formatting issues in this code and by Nick Lewycky · 11 years ago
- f0dd853 ObjectiveC migrator: More work towards insertion of ObjC audit pragmas. by Fariborz Jahanian · 11 years ago
- a919337 Use isCharInSet from llvm/Support/UnicodeCharRanges.h, added a test for double-width characters in FixIt-hints. by Alexander Kornienko · 11 years ago
- 2eeed71 DataFlowSanitizer; Clang changes. by Peter Collingbourne · 11 years ago
- 056ec12 Add option to disable module loading. by Daniel Jasper · 11 years ago
- 0fda0f7 Use llvm::sys::fs::UniqueID for windows and unix. by Rafael Espindola · 11 years ago
- 88c4b5e Support for Thread Safety Analysis in C by David Blaikie · 11 years ago
- 40ec4d2 Reduce stack frame size by avoiding a large token vector on an error path. by Bob Wilson · 11 years ago
- 11311ea Fix GNU ObjC ABI for a message returning a struct. by Eli Friedman · 11 years ago
- 34f3bcf Partially revert r186903. by Eli Friedman · 11 years ago
- 3c3a522 Rename feature test for lambda init-captures from cxx_generalized_capture to by Richard Smith · 11 years ago
- a4fb339 Update documentation to match current C++1y feature set. by Richard Smith · 11 years ago
- 5940bf3 Add new diagnostic messages when too many arguments are presented to a by Richard Trieu · 11 years ago
- 4ac537b C++1y literal suffix support: by Richard Smith · 11 years ago
- b3da613 Integers which are too large should be an error. by Eli Friedman · 11 years ago
- 0189fd6 Added preproc callback for pragma directives. by Enea Zaffanella · 11 years ago
- 6fb63ab Add SourceRange to PPCallbacks::Defined callback. by John Thompson · 11 years ago
- 6a04b5e Add condition expression result to if and elif callbacks. by John Thompson · 11 years ago
- bd89fdc Don't give # and ## special treatment when in -traditional-cpp mode. Patch by by Richard Smith · 11 years ago
- 899022b Generalize hack allowing 'const' in __has_attribute (etc) to allow any token by Richard Smith · 11 years ago
- 6b9240e Use SmallVectorImpl& for function arguments instead of SmallVector. by Craig Topper · 11 years ago
- ad5f833 Lex: Cleanup whitespace in PragmaRegionHandler by David Majnemer · 11 years ago
- ceb6dc8 Use the multiple argument form of path::append. by Benjamin Kramer · 11 years ago
- 11be064 Match MSVC's handling of commas during macro argument expansion by Reid Kleckner · 11 years ago
- 8f5d7d1 [Modules] If a module map resides in a system header directory, treat it as a system module. by Douglas Gregor · 11 years ago
- bc3f628 This patch adds new private headers to the module map. Private by Lawrence Crowl · 11 years ago
- 995544e Make sure the assembler-with-cpp hack for "#" works with multiple "#"s in by Eli Friedman · 11 years ago
- 4196019 PR16339: Don't produce a diagnostic pointing at the whitespace between a '#if' by Richard Smith · 11 years ago
- 671538e Introducing -Wheader-guard, a warning that checks header guards actually work by Richard Trieu · 11 years ago
- 8229d22 Include Path.h instead of PathV2.h. by Rafael Espindola · 11 years ago
- 461f2d8 [Preprocessor] Prevent expansion of y in x ## y when x is empty by Argyrios Kyrtzidis · 11 years ago
- 9779fdd Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros. by Michael J. Spencer · 11 years ago
- 3b7deda [modules] If we hit a failure while loading a PCH/module, abort parsing instead of trying to continue in an invalid state. by Argyrios Kyrtzidis · 11 years ago
- 58ea48d Add -Wincomplete-module, which detects when a header is included from a module but isn't itself part of a module. by Douglas Gregor · 11 years ago
- c50c6ff [Lexer] Improve Lexer::getSourceText() when the given range deals with function macro arguments. by Argyrios Kyrtzidis · 11 years ago
- 7247c88 Use only explicit bool conversion operator by David Blaikie · 12 years ago
- f45c299 C++1y: provide full 'auto' return type deduction for lambda expressions. This by Richard Smith · 12 years ago
- 30a16f1 [Modules] Make r180934 more efficient by only loading top-level module maps in system header directories. by Douglas Gregor · 12 years ago
- 8f19003 Typo and misc comment fix. by Richard Smith · 12 years ago
- f9ba851 [PCH] Remove the ASTReaderListener::ReadHeaderFileInfo callback. by Argyrios Kyrtzidis · 12 years ago
- d3220db [modules] When building a module, make sure we don't serialize out HeaderFileInfo for headers not belonging to the module. by Argyrios Kyrtzidis · 12 years ago
- 7f0ffb3 C++1y: Update __cplusplus to temporary value 201305L to allow detection of provisional C++1y support. by Richard Smith · 12 years ago
- 7adf79a Move PragmaCommentHandler to lib/Parse in preparation for calling Sema by Reid Kleckner · 12 years ago
- 269cc2d Lex: Fix quadratic behavior when unescaping _Pragma strings. by Benjamin Kramer · 12 years ago
- a4a90ca When building a module, forward diagnostics to the outer diagnostic consumer. by Douglas Gregor · 12 years ago
- dd08a0c [Preprocessor] For the MacroExpands preprocessor callback, also pass the MacroArgs object that provides information about by Argyrios Kyrtzidis · 12 years ago
- db3910b When looking for the module associated with one of our magical builtin headers, speculatively load module maps. by Douglas Gregor · 12 years ago
- e87c5bd Only evaluate __has_feature(c_thread_local) and __has_feature(cxx_thread_local) true when the target supports thread-local storage. by Douglas Gregor · 12 years ago
- 3e25b99 [PCH] Fix memory leak related to deserialized MacroInfo objects. by Argyrios Kyrtzidis · 12 years ago
- 355dae6 [libclang] Make sure the preable does not truncate comments. by Argyrios Kyrtzidis · 12 years ago
- 2fcf0de Note that we support (and in fact have supported since the dawn of time itself) by Richard Smith · 12 years ago
- e6e68b5 C++11 support is now feature-complete. by Richard Smith · 12 years ago
- 142b35e Fix off-by-one error in #pragma clang system_header. by Jordan Rose · 12 years ago
- 076eea2 Implemented #pragma GCC warning/error in the same mould as #pragma message. by Andy Gibbs · 12 years ago
- 85192c7 Parser support for #pragma clang __debug captured by Tareq A. Siraj · 12 years ago
- ec27608 Improve the diagnostics of the number-reading preprocessor directives. by Michael Ilseman · 12 years ago
- 4ad33d0 [preprocessor] Minor optimization following r178671. by Argyrios Kyrtzidis · 12 years ago
- bd25ff8 [preprocessor] Allow comparing two macro definitions syntactically instead of only lexically. by Argyrios Kyrtzidis · 12 years ago
- d560ce3 [Preprocessor] Remove PPMutationListener. by Argyrios Kyrtzidis · 12 years ago
- 3580328 [modules] Re-enable the "ambiguous expansion of macro" warning. by Argyrios Kyrtzidis · 12 years ago
- c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 12 years ago
- 9317ab9 [PCH/Modules] De/Serialize MacroInfos separately than MacroDirectives. by Argyrios Kyrtzidis · 12 years ago
- baa74bd [modules] When a MacroInfo object is deserialized, allocate and store its submodule ID. by Argyrios Kyrtzidis · 12 years ago
- cdf2808 <rdar://problem/13037793> Allow the names of modules to differ from the name of their subdirectory in the include path. by Douglas Gregor · 12 years ago
- 81ba9d1 Documentation cleanup for MacroInfo. by James Dennett · 12 years ago
- 906d66a <rdar://problem/12368093> Extend module maps with a 'conflict' declaration, and warn when a newly-imported module conflicts with an already-imported module. by Douglas Gregor · 12 years ago
- 63a7268 <rdar://problem/10796651> Introduce configuration macros into module maps. by Douglas Gregor · 12 years ago
- abc0bea PR15539: Record "evaluating if/elif condition" flag in the right place by David Blaikie · 12 years ago
- 55ea75b [Modules] Don't eagerly load and associate all the module header files. by Argyrios Kyrtzidis · 12 years ago
- c1d2239 [Modules] Resolve top-headers of modules lazily. by Argyrios Kyrtzidis · 12 years ago
- d4bf760 Add -Wc99-compat warning for C11 unicode string and character literals. by Richard Smith · 12 years ago