| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix analysis based warnings so that all warnings are emitted when compiling | DeLesley Hutchins | 2012-12-07 | 1 | -0/+1 |
| * | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -1/+1 |
| * | Make DiagnosticOptions intrusively reference-counted, and make sure | Douglas Gregor | 2012-10-23 | 1 | -2/+4 |
| * | Use llvm::getOrdinalSuffix to print ordinal numbers in diagnostics. | Jordan Rose | 2012-09-22 | 1 | -17/+2 |
| * | Avoid binding a reference to a dereferenced null pointer, if we try to emit a | Richard Smith | 2012-08-17 | 1 | -0/+3 |
| * | Fix undefined behavior: reference bound to dereferenced null pointer. | Richard Smith | 2012-08-14 | 1 | -1/+2 |
| * | Fix undefined behavior: don't bind a dereferenced null pointer to a reference. | Richard Smith | 2012-08-14 | 1 | -1/+1 |
| * | Add missing cctype includes. | Joerg Sonnenberger | 2012-08-10 | 1 | -0/+1 |
| * | Modify tree printing mode for template type diffing. If a diagnostic has | Richard Trieu | 2012-07-13 | 1 | -2/+3 |
| * | Emit -verify diagnostics even when we have a fatal error. | Jordan Rose | 2012-07-11 | 1 | -5/+22 |
| * | Properly update the FormattedArgs vector when the template type diffing falls | Richard Trieu | 2012-07-10 | 1 | -0/+9 |
| * | Update the %diff modifer to have an alternate string print when a template tree | Richard Trieu | 2012-06-29 | 1 | -7/+11 |
| * | Add template type diffing to Clang. This feature will provide a better | Richard Trieu | 2012-06-26 | 1 | -1/+78 |
| * | Documentation cleanup: delete doc comments from source files where they are | James Dennett | 2012-06-15 | 1 | -6/+0 |
| * | [Basic] Fix up DiagnosticBuilder::{FlushCounts,Emit} to be inline. | Daniel Dunbar | 2012-03-13 | 1 | -23/+6 |
| * | [Basic] Stop using a SmallVector<> for Diagnostic. This drops Clang binary size | Daniel Dunbar | 2012-03-13 | 1 | -3/+6 |
| * | More ArrayRef-ification of methods. | Bill Wendling | 2012-02-22 | 1 | -1/+1 |
| * | Basic: import IntrusiveRefCntPtr<> into clang namespace | Dylan Noblesmith | 2012-02-20 | 1 | -1/+1 |
| * | Fix indentation and an 80-column violation. | Chad Rosier | 2012-02-07 | 1 | -5/+7 |
| * | Revert my patches which removed Diagnostic.h includes by moving some operator... | Benjamin Kramer | 2012-02-07 | 1 | -2/+2 |
| * | In r149662, setDiagnosticMapping was modified to not allow warnings mapped to | Chad Rosier | 2012-02-07 | 1 | -0/+35 |
| * | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
| * | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer | 2012-02-04 | 1 | -1/+1 |
| * | Move Storage and StorageAllocator out of the PartialDiagnostic class so we ca... | Benjamin Kramer | 2012-02-04 | 1 | -2/+2 |
| * | Change the fixed array of FixitHints to a SmallVector to lift off | Argyrios Kyrtzidis | 2012-02-03 | 1 | -6/+2 |
| * | [frontend] Don't allow a mapping to a warning override an error/fatal mapping. | Chad Rosier | 2012-02-03 | 1 | -0/+7 |
| * | DiagnosticsEngine::setMappingToAllDiagnostics() does not need to return bool, | Argyrios Kyrtzidis | 2012-01-28 | 1 | -3/+1 |
| * | Due to a bug, -Wno-everything works like -Weverything. Fix the bug by having | Argyrios Kyrtzidis | 2012-01-27 | 1 | -0/+14 |
| * | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie | 2011-12-20 | 1 | -0/+2 |
| * | C++11 constexpr: Add note stacks containing backtraces if constant evaluation | Richard Smith | 2011-12-16 | 1 | -0/+1 |
| * | [PCH] Fix reading from PCH of diagnostic pragmas. | Argyrios Kyrtzidis | 2011-11-09 | 1 | -10/+1 |
| * | Basic/Diagnostics: Apparently, #pragma ... diagnostic is intended to override | Daniel Dunbar | 2011-10-04 | 1 | -0/+7 |
| * | Basic/Diagnostic: Kill off a few unnecessary functions now that refactoring i... | Daniel Dunbar | 2011-09-29 | 1 | -1/+1 |
| * | Basic/Diagnostics: Rewrite DiagnosticIDs::getDiagnosticLevel completely to be... | Daniel Dunbar | 2011-09-29 | 1 | -2/+7 |
| * | Basic/Diagnostics: Add three explicit bits to DiagnosticMappingInfo to track ... | Daniel Dunbar | 2011-09-29 | 1 | -4/+46 |
| * | Basic/Diagnostics: Add a DiagnosticIDs::getDiagnosticsInGroup method, and use | Daniel Dunbar | 2011-09-29 | 1 | -0/+15 |
| * | Basic/Diagnostics: Move setDiagnosticMapping() to using DiagnosticMappingInfo | Daniel Dunbar | 2011-09-29 | 1 | -5/+7 |
| * | Basic/Diagnostic: Factor out | Daniel Dunbar | 2011-09-29 | 1 | -0/+12 |
| * | Rename DiagnosticInfo to Diagnostic as per issue 5397 | David Blaikie | 2011-09-26 | 1 | -7/+7 |
| * | Rename DiagnosticClient to DiagnosticConsumer as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -8/+8 |
| * | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -41/+44 |
| * | Implement '-Weverything', which enables all warnings except those explicitly ... | Ted Kremenek | 2011-08-18 | 1 | -0/+1 |
| * | Make DiagnosticErrorTrap keep a count of the errors that occurred so multiple | Argyrios Kyrtzidis | 2011-07-29 | 1 | -0/+2 |
| * | Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon ... | Chris Lattner | 2011-07-23 | 1 | -2/+2 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -15/+15 |
| * | Revamp the SourceManager to separate the representation of parsed | Douglas Gregor | 2011-07-19 | 1 | -0/+10 |
| * | Apply patch from Richard Trieu to fix PR9548: | Chandler Carruth | 2011-07-11 | 1 | -3/+11 |
| * | Keep track of when "unrecoverable" errors occur, then allow | Douglas Gregor | 2011-07-06 | 1 | -0/+2 |
| * | A StringRef-ication of the DiagnosticIDs API and internals. | Argyrios Kyrtzidis | 2011-05-25 | 1 | -3/+3 |
| * | Introduce a Diagnostic::Report function that accepts and emits a StoredDiagno... | Argyrios Kyrtzidis | 2011-05-05 | 1 | -0/+41 |