| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Eliminate post-diagnostic hooks. Instead, implement a Sema-specific | Douglas Gregor | 2009-03-20 | 1 | -10/+0 |
* | Bindir and Win32 builds work, so switch to .inc files. Leave the .def files i... | Sebastian Redl | 2009-03-19 | 1 | -16/+16 |
* | Allow notes to be printed following a fatal error, then suppress any | Douglas Gregor | 2009-03-19 | 1 | -12/+17 |
* | Revert the switch to the tablegen diags. It fails for seperate objdir builds ... | Sebastian Redl | 2009-03-14 | 1 | -16/+16 |
* | Switch diagnostics from .def to tablegen files. Please validate the Windows b... | Sebastian Redl | 2009-03-14 | 1 | -16/+16 |
* | Add Diagnostic files for Frontend and move a couple errors over. | Daniel Dunbar | 2009-03-12 | 1 | -2/+14 |
* | Driver: Use standard Diagnostic interface for diagnostics. | Daniel Dunbar | 2009-03-12 | 1 | -2/+14 |
* | Add a notion of "post-diagnostic hooks", which are callbacks attached | Douglas Gregor | 2009-03-10 | 1 | -0/+18 |
* | Revert my last couple patches until I can get them to not make the tests fail. | Ted Kremenek | 2009-03-07 | 1 | -8/+0 |
* | Teach Diagnostic about Selector. | Ted Kremenek | 2009-03-07 | 1 | -0/+8 |
* | replace a dirty hack with a clean solution. Too bad we can't | Chris Lattner | 2009-02-19 | 1 | -1/+3 |
* | Fix a long standard problem with clang retaining "too much" sugar | Chris Lattner | 2009-02-19 | 1 | -3/+1 |
* | fix a minor bug with my previous patch | Chris Lattner | 2009-02-17 | 1 | -1/+3 |
* | fix notes so that they are always filtered with the same logic | Chris Lattner | 2009-02-17 | 1 | -45/+79 |
* | don't emit any diagnostics after a fatal one. | Chris Lattner | 2009-02-06 | 1 | -1/+9 |
* | add support to the diagnostics machinery for mapping warnings and | Chris Lattner | 2009-02-05 | 1 | -0/+5 |
* | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor | 2009-02-04 | 1 | -0/+1 |
* | next round of diagnostics cleanups, moving some | Chris Lattner | 2009-01-29 | 1 | -26/+26 |
* | Fix -Wimplicit-function-declaration, which required some refactoring and | Chris Lattner | 2009-01-29 | 1 | -27/+10 |
* | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner | 2009-01-27 | 1 | -8/+91 |
* | Added virtual method DiagnosticClient::IncludeInDiagnosticCounts(). This is ... | Ted Kremenek | 2009-01-23 | 1 | -1/+7 |
* | Change some terminology in SourceLocation: instead of referring to | Chris Lattner | 2009-01-16 | 1 | -1/+1 |
* | Fix order of evaluation. | Sebastian Redl | 2008-11-27 | 1 | -1/+1 |
* | Convert IdentifierInfo's to be printed the same as DeclarationNames | Chris Lattner | 2008-11-23 | 1 | -6/+11 |
* | add support for inserting a DeclarationName into a diagnostic directly | Chris Lattner | 2008-11-23 | 1 | -0/+1 |
* | Genericize the qualtype formating callback to support any diag argument. | Chris Lattner | 2008-11-23 | 1 | -8/+9 |
* | Add support for sending QualType's directly into diags and convert two | Chris Lattner | 2008-11-23 | 1 | -8/+25 |
* | Implement a %plural modifier for complex plural forms in diagnostics. Use it ... | Sebastian Redl | 2008-11-22 | 1 | -0/+126 |
* | Split the DiagnosticInfo class into two disjoint classes: | Chris Lattner | 2008-11-22 | 1 | -7/+9 |
* | Add the concept of "modifiers" to the clang diagnostic format | Chris Lattner | 2008-11-21 | 1 | -25/+121 |
* | Allow sending IdentifierInfo*'s into Diagnostics without turning them into st... | Chris Lattner | 2008-11-19 | 1 | -0/+6 |
* | add direct support for signed and unsigned integer arguments to diagnostics. | Chris Lattner | 2008-11-19 | 1 | -0/+13 |
* | rewrite FormatDiagnostic to be less gross and a lot more efficient. | Chris Lattner | 2008-11-19 | 1 | -14/+35 |
* | implement a transparent optimization with the diagnostics stuff: | Chris Lattner | 2008-11-19 | 1 | -1/+2 |
* | This reworks some of the Diagnostic interfaces a bit to change how diagnostics | Chris Lattner | 2008-11-18 | 1 | -33/+19 |
* | Change the diagnostics interface to take an array of pointers to | Chris Lattner | 2008-11-18 | 1 | -3/+3 |
* | Fix PR3077: tokens that come from macro expansions whose macro was | Chris Lattner | 2008-11-16 | 1 | -1/+1 |
* | fix rdar://6288301: custom warnings don't respect -Werror. | Chris Lattner | 2008-10-17 | 1 | -2/+8 |
* | Add --suppress-system-warnings (on by default, use =0 to disable) | Daniel Dunbar | 2008-09-12 | 1 | -1/+3 |
* | * Remove isInSystemHeader() from DiagClient, move it to SourceManager | Nico Weber | 2008-08-10 | 1 | -17/+38 |
* | Fix --html-diags in driver by delaying the construction of an HTMLDiagnosticC... | Ted Kremenek | 2008-08-07 | 1 | -5/+5 |
* | Add EXTWARN Diagnostic class. | Daniel Dunbar | 2008-08-05 | 1 | -1/+4 |
* | Implement support for -w, which silences all warnings. PR2384. | Chris Lattner | 2008-05-29 | 1 | -4/+9 |
* | Fix regression in Diagnostic that caused it to not register the number | Ted Kremenek | 2008-04-14 | 1 | -2/+3 |
* | Only increment the number of diagnostics when the DiagnosticClient used | Ted Kremenek | 2008-04-14 | 1 | -2/+6 |
* | Added variation of the "Report" method in the class Diagnostic that takes | Ted Kremenek | 2008-03-31 | 1 | -3/+7 |
* | Make a major restructuring of the clang tree: introduce a top-level | Chris Lattner | 2008-03-15 | 1 | -0/+232 |