1. 477aab6 A StringRef-ication of the DiagnosticIDs API and internals. by Argyrios Kyrtzidis · 13 years ago
  2. c9471b0 Introduce the -fdiagnostics-format=xxx option to control how Clang by Douglas Gregor · 13 years ago
  3. 7d2b8c1 Initial work to improve documentation for Clang's diagnostics, from Matthieu Monrocq by Douglas Gregor · 13 years ago
  4. 32ad935 Remove a redundant isValid() check by Matt Beaumont-Gay · 13 years ago
  5. abaca7a Add an option to suppress include stack printing on note diagnostics. by Chandler Carruth · 13 years ago
  6. 7decebf Teach TextDiagnosticPrinter to print out '-Werror' in addition to the warning flag for a warning mapped to an error. by Ted Kremenek · 13 years ago
  7. 0433116 TextDiagnosticPrinter.cpp: Show diagnostics as far as possible even with invalid PresomedLoc, instead of just silencing it. by Axel Naumann · 13 years ago
  8. f2224d8 Since multiple diagnostics can share one diagnostic client, have the client keeping track by Argyrios Kyrtzidis · 14 years ago
  9. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
  10. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 14 years ago
  11. c417fa0 Teach SourceManager::getPresumedLoc() how to fail gracefully if getLineNumber/getColumnNumber fail by Douglas Gregor · 14 years ago
  12. bf5e09d Eliminate some extraneous whitespace in the machine-parseable Fix-It output. by Douglas Gregor · 14 years ago
  13. 4786c15 Add machine-parseable Fix-It output as part of diagnostics, under the by Douglas Gregor · 14 years ago
  14. 783c56f Simplify FixItHint by eliminated the unnecessary InsertionLoc by Douglas Gregor · 14 years ago
  15. 45f9b7e Bug 7377: printf checking fails to flag some undefined behavior by Tom Care · 14 years ago
  16. 0a76aae introduce a new CharSourceRange class, and enhance the diagnostics routines by Chris Lattner · 14 years ago
  17. d342bf7 when too many errors are emitted, and we produce: by Chris Lattner · 14 years ago
  18. 6fbe839 add a new -fdiagnostics-show-category=none/id/name option, giving control by Chris Lattner · 14 years ago
  19. c9b8890 When -fdiagnostics-print-source-range-info is specified, by Chris Lattner · 14 years ago
  20. 6c1cb99 Introduce a limit on the depth of the macro instantiation backtrace by Douglas Gregor · 14 years ago
  21. 5c5db4e change FullSourceLoc to have a *const* SourceManager&, eliminating a const_cast. by Chris Lattner · 14 years ago
  22. ce487ef Fix a bug in caret-line-pruning logic that only happens when we have a by Douglas Gregor · 14 years ago
  23. 04e4427 fix PR6814 - Only print [-pedantic] on a diagnostic if -pedantic by Chris Lattner · 14 years ago
  24. 849b243 Reinstate my CodeModificationHint -> FixItHint renaming patch, without by Douglas Gregor · 14 years ago
  25. 275313c Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder by Douglas Gregor · 14 years ago
  26. d0ebe08 Rename CodeModificationHint to FixItHint, since we've been using the by Douglas Gregor · 14 years ago
  27. f6ac97b Let SourceManager::getBufferData return StringRef instead of a pair of two const char*. by Benjamin Kramer · 14 years ago
  28. f715ca1 Give SourceManager a Diagnostic object with which to report errors, by Douglas Gregor · 14 years ago
  29. aea67db Introduce a new BufferResult class to act as the return type of by Douglas Gregor · 14 years ago
  30. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 14 years ago
  31. b96b670 Add TextDiagnosticPrinter::setPrefix, for adding a string to prefix diagnostic by Daniel Dunbar · 14 years ago
  32. 8d2ea4e when a diagnostic is an extension and has no other -W flag, by Chris Lattner · 14 years ago
  33. 41e79e2 restructure code a bit: there are two potential issues by Chris Lattner · 14 years ago
  34. e44433c Print fix-it hints properly around tabs, from Christian Adåker! by Douglas Gregor · 14 years ago
  35. 52388f9 diagnose invalid values of -ftabstop, patch by Christian Adaker! by Chris Lattner · 14 years ago
  36. 124fca5 implement -ftabstop=width, patch by Christian Adåker by Chris Lattner · 14 years ago
  37. eae18f8 Fix an off by one in findEndOfWord, which could scan past the end of the string in a corner case. by Daniel Dunbar · 15 years ago
  38. 0304c6c Remove 'LangOpts' from Diagnostic (added in http://llvm.org/viewvc/llvm-project?view=rev&revision=90642). by Steve Naroff · 15 years ago
  39. e0c4d89 Integrate the following from the 'objective-rewrite' branch: by Steve Naroff · 15 years ago
  40. 2e77aa1 Use PresumedLoc when emitting the 'included from' diagnostics. For a malformed by Chris Lattner · 15 years ago
  41. aea3641 Allow TextDiagnosticPrinter to have optional ownership of its output stream. by Daniel Dunbar · 15 years ago
  42. efcbe94 Replace DiagnosticClient::setLangOptions with {Begin,End}SourceFile, and clarify by Daniel Dunbar · 15 years ago
  43. eace874 Factor out a diagnostic options class. by Daniel Dunbar · 15 years ago
  44. 06d1072 Workaround a bug exposed by the FileCheckify of message-length.c, the caret end by Daniel Dunbar · 15 years ago
  45. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  46. cbff0dc Remove trailing whitespace. by Daniel Dunbar · 15 years ago
  47. 81ebe9b Minor tweak to -fdiagnostics-print-source-range-info to make it print by Chris Lattner · 15 years ago
  48. 603fca7 Add ANSI color support for clang. by Torok Edwin · 15 years ago
  49. 1f0eb56 "This patch fixes an obvious buffer overrun in by Douglas Gregor · 15 years ago
  50. c95bd4d When word-wrapping, be more defensive about a ridiculously small number of columns. Fixes <rdar://problem/6892178> by Douglas Gregor · 15 years ago
  51. 2cc2b9c Eliminate extra vertical space in Clang diagnostics by Douglas Gregor · 15 years ago
  52. 037fb7f Fix rdar://6849429 - -Wunused-value with deeply nested macro expansion generates untraceable warnings by Chris Lattner · 15 years ago
  53. 2fb3ea3 Simplify the interesting-region code by assimmilating blocks of non-whitespace text with each expansion step. It's easier and seems to have better results. by Douglas Gregor · 15 years ago
  54. cfe1f9d Tweak the extraction of the "interesting" part of a source range in two ways: by Douglas Gregor · 15 years ago
  55. 1ef29d2 Fix an infinite loop in diagnostic printing. by Daniel Dunbar · 15 years ago
  56. 2167de4 Fix crash in source-line truncation code for diagnostic by Douglas Gregor · 15 years ago
  57. cb6929b temporary hack to work around PR4128 by Chris Lattner · 15 years ago
  58. 844da34 When a fix-it hint would span multiple lines, don't print it; half a by Douglas Gregor · 15 years ago
  59. 7d101f6 When we truncate a source line to fit it within the terminal width, by Douglas Gregor · 15 years ago
  60. 44cf08e Respect the COLUMNS environment variable for word-wrapping (so we get by Douglas Gregor · 15 years ago
  61. 47f7177 When printing a source line as part of a diagnostic, the source line by Douglas Gregor · 15 years ago
  62. fffd93f Implement -fmessage-length=N, which word-wraps diagnostics to N columns. by Douglas Gregor · 15 years ago
  63. 770dbf0 In -fdiagnostics-print-source-range-info mode, print a space before the by Chris Lattner · 15 years ago
  64. 5ce24c8 make "in included from" and "in instatiation from" messages respect by Chris Lattner · 15 years ago
  65. 74548e6 don't crash on invalid ranges in -fprint-source-range-info by Chris Lattner · 15 years ago
  66. aa5bf2e implement compiler support for -fno-diagnostics-fixit-info, rdar://6805442 by Chris Lattner · 15 years ago
  67. 19cbb44 tblgen is now passing diagnostic group information in the .inc file, ignore it everywhere. by Chris Lattner · 15 years ago
  68. d51d74a implement framework for -fdiagnostics-show-option, but tblgen isn't by Chris Lattner · 15 years ago
  69. 2c78b87 Change Lexer::MeasureTokenLength to take a LangOptions reference. by Chris Lattner · 15 years ago
  70. 1fbee5d implement a new -fprint-source-range-info option, which by Chris Lattner · 15 years ago
  71. df667e7 Extend the notion of active template instantiations to include the by Douglas Gregor · 15 years ago
  72. cd1148b generalize the "end of line" checking logic to stop at any \0 at the by Chris Lattner · 15 years ago
  73. 7b5b5b4 fix PR2639 by Chris Lattner · 15 years ago
  74. e1bd4e6 Rename lib/Driver (etc) to lib/Frontend in prep for the *actual* by Daniel Dunbar · 15 years ago[Renamed (99%) from lib/Driver/TextDiagnosticPrinter.cpp]
  75. 4b2d3f7 Introduce code modification hints into the diagnostics system. When we by Douglas Gregor · 15 years ago
  76. 676f024 map source ranges through macro expansions. Before: by Chris Lattner · 15 years ago
  77. ebbbb1b refactor, pass ranges down instead of the whole DiagnosticInfo. by Chris Lattner · 15 years ago
  78. 609b3ab tidy up by Chris Lattner · 15 years ago
  79. 55dcef0 As an experimental hack, emit "instantiated from" information in by Chris Lattner · 15 years ago
  80. 49a48eb sink a call to getInstantiationLoc to eliminate an assertion. by Chris Lattner · 15 years ago
  81. b88af81 break down EmitCaretDiagnostic to use more primitive calls. by Chris Lattner · 15 years ago
  82. 94f5578 split caret diagnostic printing out into its own function. by Chris Lattner · 15 years ago
  83. 8f7b396 simplify some code. by Chris Lattner · 15 years ago
  84. 34837a5 If a source range comes through a function-like macro expansion, by Chris Lattner · 15 years ago
  85. 4132758 handle fatal errors, rely on warnings to point out missing cases. by Chris Lattner · 15 years ago
  86. 30fc933 lower the interface to getLineNumber like we did for by Chris Lattner · 15 years ago
  87. 7da5aea make SM::getColumnNumber take a predecomposed FileID/offset, which by Chris Lattner · 15 years ago
  88. b8bf65e " Attached is a patch for TextDiagnosticPrinter that adds an optional by Chris Lattner · 15 years ago
  89. 05f3957 Fix TextDiagnosticPrinter::HandleDiagnostic to handle invalid FullSourceLocs that do not have a SourceManager. by Ted Kremenek · 15 years ago
  90. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 15 years ago
  91. a11d617 Rename SourceManager::getCanonicalFileID -> getFileID. There is by Chris Lattner · 15 years ago
  92. 3b4d5e9 Rename SourceLocation::getFileID to getChunkID, because it returns by Chris Lattner · 15 years ago
  93. 59ddeab eliminate FullSourceLoc::getLocation() now that FullSourceLoc by Chris Lattner · 15 years ago
  94. f7cf85b more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 15 years ago
  95. 32b939b remove a dead enum by Chris Lattner · 16 years ago
  96. a03a5b5 switch TextDiagnosticPrinter to raw_ostream. by Chris Lattner · 16 years ago
  97. f4c8396 rewrite FormatDiagnostic to be less gross and a lot more efficient. by Chris Lattner · 16 years ago
  98. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  99. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  100. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago