Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove DiagnosticConsumer::clone(), a bad idea that is now unused. | Douglas Gregor | 2013-05-03 | 1 | -5/+0 |
| | | | | llvm-svn: 181070 | ||||
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | uncovered. This required manually correcting all of the incorrect main-module headers I could find, and running the new llvm/utils/sort_includes.py script over the files. I also manually added quite a few missing headers that were uncovered by shuffling the order or moving headers up to be main-module-headers. llvm-svn: 169237 | ||||
* | Make DiagnosticOptions intrusively reference-counted, and make sure | Douglas Gregor | 2012-10-23 | 1 | -3/+4 |
| | | | | | | | the various stakeholders bump up the reference count. In particular, the diagnostics engine now keeps the DiagnosticOptions object alive. llvm-svn: 166508 | ||||
* | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -2/+2 |
| | | | | | | | (I was going to fix the TODO about DenseMap too, but that would break self-host right now. See PR11922.) llvm-svn: 149799 | ||||
* | Remove unnecessary default cases in switches over enums. | David Blaikie | 2012-01-17 | 1 | -2/+2 |
| | | | | | | This allows -Wswitch-enum to find switches that need updating when these enums are modified. llvm-svn: 148281 | ||||
* | Introduce a pure virtual clone() method to DiagnosticConsumer, so that | Douglas Gregor | 2011-09-29 | 1 | -0/+6 |
| | | | | | | | | | we have the ability to create a new, distict diagnostic consumer when we go off and build a module. This avoids the currently horribleness where the same diagnostic consumer sees diagnostics for multiple translation units (and multiple SourceManagers!) causing all sorts of havok. llvm-svn: 140743 | ||||
* | [driver] Add basic support for escaping XML characters in CC_LOG_DIAGNOSTICS | Chad Rosier | 2011-09-28 | 1 | -5/+30 |
| | | | | | | | strings. rdar://9696709 llvm-svn: 140732 | ||||
* | Rename DiagnosticInfo to Diagnostic as per issue 5397 | David Blaikie | 2011-09-26 | 1 | -1/+1 |
| | | | | llvm-svn: 140493 | ||||
* | Rename DiagnosticClient to DiagnosticConsumer as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -4/+4 |
| | | | | llvm-svn: 140479 | ||||
* | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -7/+7 |
| | | | | llvm-svn: 140478 | ||||
* | remove unneeded llvm:: namespace qualifiers on some core types now that ↵ | Chris Lattner | 2011-07-23 | 1 | -2/+2 |
| | | | | | | | | LLVM.h imports them into the clang namespace. llvm-svn: 135852 | ||||
* | Frontend: Fix a crash in CC_LOG_DIAGNOSTICS handling. | Daniel Dunbar | 2011-05-05 | 1 | -2/+2 |
| | | | | llvm-svn: 130909 | ||||
* | Fronted/CC_LOG_DIAGNOSTICS: Output main file name, and add support for | Daniel Dunbar | 2011-04-07 | 1 | -2/+19 |
| | | | | | | outputting dwarf-debug-flags. llvm-svn: 129094 | ||||
* | Fronted/CC_LOG_DIAGNOSTICS: Tweak output form to be plist chunks, and don't | Daniel Dunbar | 2011-04-07 | 1 | -11/+25 |
| | | | | | | output missing data. llvm-svn: 129093 | ||||
* | Frontend: Continue flushing out LogDiagnosticPrinter. | Daniel Dunbar | 2011-04-07 | 1 | -5/+81 |
| | | | | llvm-svn: 129091 | ||||
* | Frontend: Sketch a LogDiagnosticPrinter object, and wire CC_LOG_DIAGNOSTICS to | Daniel Dunbar | 2011-04-07 | 1 | -0/+39 |
it. llvm-svn: 129089 |