Age | Commit message (Expand) | Author |
2011-02-14 | Move support for "#pragma STDC FP_CONTRACT" to Parser; add Sema actions | Peter Collingbourne |
2011-02-14 | Make LexOnOffSwitch a Preprocessor member function | Peter Collingbourne |
2010-12-22 | Introduced raw_identifier token kind. | Abramo Bagnara |
2010-12-15 | Fix diagnostic pragmas. | Argyrios Kyrtzidis |
2010-11-12 | Make sure to always check the result of | Douglas Gregor |
2010-10-19 | Fix typo in comment. | Ted Kremenek |
2010-09-27 | Fix coding standard mistake from my last commit. | Michael J. Spencer |
2010-09-27 | Lexer: Implement GCC's version of pragma message. | Michael J. Spencer |
2010-09-09 | When we parse a pragma, keep track of how that pragma was originally | Douglas Gregor |
2010-09-05 | fix 7320: we can't delete a trailing space if it doesn't exist. | Chris Lattner |
2010-08-30 | Now that GCC will have #pragma push/pop (in GCC 4.6), allow the | Douglas Gregor |
2010-08-29 | Complain if a __pragma isn't terminated. | John McCall |
2010-08-28 | Add support for Microsoft's __pragma in the preprocessor. | John McCall |
2010-08-18 | CrashRecovery: Add #pragma clang __debug handle_crash, useful when debugging | Daniel Dunbar |
2010-08-17 | Lex: Add #pragma clang __debug {llvm_fatal_error, llvm_unreachable}, for testing | Daniel Dunbar |
2010-08-17 | Implement #pragma push_macro, patch by Francois Pichet! | Chris Lattner |
2010-07-29 | Transcribe clattner email to SVN. | Daniel Dunbar |
2010-07-29 | Change #pragma crash to segv, instead of abort. | Daniel Dunbar |
2010-07-28 | Preprocessor: Add support for '#pragma clang __debug crash' and '#pragma clang | Daniel Dunbar |
2010-07-13 | Modify the pragma handlers to accept and use StringRefs instead of Identifier... | Argyrios Kyrtzidis |
2010-06-26 | Implement support for #pragma message, patch by Michael Spencer! | Chris Lattner |
2010-06-11 | Preprocessor: Ignore unknown pragmas in -E -dM and -Eonly modes. | Daniel Dunbar |
2010-03-16 | Audit all Preprocessor::getSpelling() callers, improving failure | Douglas Gregor |
2010-02-27 | Add an overload of Preprocessor::getSpelling which takes a SmallVector and | Benjamin Kramer |
2010-01-22 | revert my patch for rdar://7520940 that warns when a published header | Chris Lattner |
2010-01-10 | stringref'ize a bunch of filename handling logic. Much | Chris Lattner |
2010-01-10 | implement rdar://7520940: published framework headers should | Chris Lattner |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-07-12 | add push/pop semantics for diagnostics. Patch by Louis Gerbarg! | Chris Lattner |
2009-07-02 | Add support for retrieving the Doxygen comment associated with a given | Douglas Gregor |
2009-06-18 | Fix a crash that can occur when a #pragma handler eats to the end of the | Chris Lattner |
2009-06-15 | Fix #pragma GCC system_header by making it insert a virtual linemarker into | Chris Lattner |
2009-05-12 | accept "#pragma clang foo" where we accept "#pragma GCC foo". | Chris Lattner |
2009-04-19 | implement "#pragma GCC diagnostic". Besides being a nice feature, this | Chris Lattner |
2009-04-19 | Warn about uses of #pragma STDC FENV_ACCESS ON, since we don't | Chris Lattner |
2009-04-19 | diagnose invalid syntax of STDC pragmas. | Chris Lattner |
2009-04-19 | reject invalid stuff in the STDC namespace. | Chris Lattner |
2009-04-19 | stub out STDC #pragmas. | Chris Lattner |
2009-04-19 | basic support for -Wunknown-pragmas, more coming. | Chris Lattner |
2009-04-14 | Fix the #import / #include_next "extra tokens at end of #foo directive" | Chris Lattner |
2009-03-17 | typo | Gabor Greif |
2009-03-08 | simplify some logic by making ScratchBuffer handle the application of trailing | Chris Lattner |
2009-02-15 | track "just a little more" location information for macro instantiations. | Chris Lattner |
2009-01-29 | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-26 | This change refactors some of the low-level lexer interfaces a bit. | Chris Lattner |
2009-01-19 | Make SourceLocation::getFileLoc private to reduce the API exposure of | Chris Lattner |
2009-01-17 | Change the Lexer ctor used to lex _Pragma directives into a static factory | Chris Lattner |
2009-01-17 | this massive patch introduces a simple new abstraction: it makes | Chris Lattner |
2009-01-16 | only notify callbacks if they exist. | Chris Lattner |