1. 0e2c34f Update aosp/master clang for rebase to r230699. by Stephen Hines · 10 years ago
  2. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  3. c568f1e Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  4. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  5. 651f13c Updated to Clang 3.5a. by Stephen Hines · 10 years ago
  6. d99990d Revert r177218. by Argyrios Kyrtzidis · 11 years ago
  7. cc2b653 Remove DiagnosticConsumer::clone(), a bad idea that is now unused. by Douglas Gregor · 11 years ago
  8. a4a90ca When building a module, forward diagnostics to the outer diagnostic consumer. by Douglas Gregor · 11 years ago
  9. 363f99d Initialize WarnOnSpellCheck. by Rafael Espindola · 11 years ago
  10. f9067c6 Moving initialization into the initializer list and correcting capitalization, as suggested by Chandler. by Aaron Ballman · 12 years ago
  11. 6637b06 Fixing a typo where FixIts was accidentally self-assigning instead of assigning in the parameter Fixits. This fixes several failed assertions with MSVC debug builds. by Aaron Ballman · 12 years ago
  12. 3f6f51e Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 12 years ago
  13. 566f063 Changed to static_cast, due to post-commit review. by Filipe Cabecinhas · 12 years ago
  14. 825648a Cast to remove the narrowing conversion error in c++11. by Filipe Cabecinhas · 12 years ago
  15. 877761c Handle passing non-Qualtypes to %diff better. Instead of asserting, fall back by Richard Trieu · 12 years ago
  16. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  17. 5b9268f Fix code that attempted to produce a diagnostic with one DiagnosticEngine, then by Richard Smith · 12 years ago
  18. 12f37e4 Fix analysis based warnings so that all warnings are emitted when compiling by DeLesley Hutchins · 12 years ago
  19. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  20. 02c23eb Make DiagnosticOptions intrusively reference-counted, and make sure by Douglas Gregor · 12 years ago
  21. 615a092 Use llvm::getOrdinalSuffix to print ordinal numbers in diagnostics. by Jordan Rose · 12 years ago
  22. 9e63dc5 Avoid binding a reference to a dereferenced null pointer, if we try to emit a by Richard Smith · 12 years ago
  23. c95ad00 Fix undefined behavior: reference bound to dereferenced null pointer. by Richard Smith · 12 years ago
  24. 00aae52 Fix undefined behavior: don't bind a dereferenced null pointer to a reference. by Richard Smith · 12 years ago
  25. 7094dee Add missing cctype includes. by Joerg Sonnenberger · 12 years ago
  26. 5561977 Modify tree printing mode for template type diffing. If a diagnostic has by Richard Trieu · 12 years ago
  27. c6d64a2 Emit -verify diagnostics even when we have a fatal error. by Jordan Rose · 12 years ago
  28. 5409d28 Properly update the FormattedArgs vector when the template type diffing falls by Richard Trieu · 12 years ago
  29. 529cdf4 Update the %diff modifer to have an alternate string print when a template tree by Richard Trieu · 12 years ago
  30. 246b6aa Add template type diffing to Clang. This feature will provide a better by Richard Trieu · 12 years ago
  31. d3e8eda Documentation cleanup: delete doc comments from source files where they are by James Dennett · 12 years ago
  32. 3054f09 [Basic] Fix up DiagnosticBuilder::{FlushCounts,Emit} to be inline. by Daniel Dunbar · 13 years ago
  33. 981e279 [Basic] Stop using a SmallVector<> for Diagnostic. This drops Clang binary size by Daniel Dunbar · 13 years ago
  34. 341785e More ArrayRef-ification of methods. by Bill Wendling · 13 years ago
  35. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  36. dfaee49 Fix indentation and an 80-column violation. by Chad Rosier · 13 years ago
  37. d7a3e2c Revert my patches which removed Diagnostic.h includes by moving some operator overloads out of line. by Benjamin Kramer · 13 years ago
  38. 3f22509 In r149662, setDiagnosticMapping was modified to not allow warnings mapped to by Chad Rosier · 13 years ago
  39. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  40. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 13 years ago
  41. ef9b60f Move Storage and StorageAllocator out of the PartialDiagnostic class so we can forward declare them. by Benjamin Kramer · 13 years ago
  42. cbf46a0 Change the fixed array of FixitHints to a SmallVector to lift off by Argyrios Kyrtzidis · 13 years ago
  43. 7a0a31c [frontend] Don't allow a mapping to a warning override an error/fatal mapping. by Chad Rosier · 13 years ago
  44. 82e6411 DiagnosticsEngine::setMappingToAllDiagnostics() does not need to return bool, by Argyrios Kyrtzidis · 13 years ago
  45. 11583c7 Due to a bug, -Wno-everything works like -Weverything. Fix the bug by having by Argyrios Kyrtzidis · 13 years ago
  46. 99ba9e3 Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 13 years ago
  47. 08d6e03 C++11 constexpr: Add note stacks containing backtraces if constant evaluation by Richard Smith · 13 years ago
  48. 87429a0 [PCH] Fix reading from PCH of diagnostic pragmas. by Argyrios Kyrtzidis · 13 years ago
  49. 53201a8 Basic/Diagnostics: Apparently, #pragma ... diagnostic is intended to override by Daniel Dunbar · 13 years ago
  50. aeacae5 Basic/Diagnostic: Kill off a few unnecessary functions now that refactoring is done, and add a note that the new setDiagnosticGroup{...} methods only operate on the current diagnostic state. by Daniel Dunbar · 13 years ago
  51. be1aa41 Basic/Diagnostics: Rewrite DiagnosticIDs::getDiagnosticLevel completely to be straighter line code, use the new DiagnosticMappingInfo flags, and eliminate the odd MAP_WARNING_NO_WERROR and friend mappings. by Daniel Dunbar · 13 years ago
  52. a5e4133 Basic/Diagnostics: Add three explicit bits to DiagnosticMappingInfo to track "no-warning-as-error", "no-error-as-fatal", and "show-in-system-header", and update DiagnosticsEngine::setDiagnosticGroup{WarningAsError,ErrorAsFatal} and GetDefaultDiagMappingInfo to set them appropriately. by Daniel Dunbar · 13 years ago
  53. 3f83946 Basic/Diagnostics: Add a DiagnosticIDs::getDiagnosticsInGroup method, and use by Daniel Dunbar · 13 years ago
  54. 09ea68d Basic/Diagnostics: Move setDiagnosticMapping() to using DiagnosticMappingInfo by Daniel Dunbar · 13 years ago
  55. 4aa8f2b Basic/Diagnostic: Factor out by Daniel Dunbar · 13 years ago
  56. 40847cf Rename DiagnosticInfo to Diagnostic as per issue 5397 by David Blaikie · 13 years ago
  57. 78ad0b9 Rename DiagnosticClient to DiagnosticConsumer as per issue 5397 by David Blaikie · 13 years ago
  58. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
  59. 1e473cc Implement '-Weverything', which enables all warnings except those explicitly mapped to be ignored. by Ted Kremenek · 13 years ago
  60. c0a575f Make DiagnosticErrorTrap keep a count of the errors that occurred so multiple by Argyrios Kyrtzidis · 13 years ago
  61. 2d3ba4f Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon Mulder! by Chris Lattner · 13 years ago
  62. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  63. f62d43d Revamp the SourceManager to separate the representation of parsed by Douglas Gregor · 13 years ago
  64. 0673cb3 Apply patch from Richard Trieu to fix PR9548: by Chandler Carruth · 13 years ago
  65. 85bea97 Keep track of when "unrecoverable" errors occur, then allow by Douglas Gregor · 13 years ago
  66. 477aab6 A StringRef-ication of the DiagnosticIDs API and internals. by Argyrios Kyrtzidis · 13 years ago
  67. e59abb5 Introduce a Diagnostic::Report function that accepts and emits a StoredDiagnostic. by Argyrios Kyrtzidis · 13 years ago
  68. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  69. dc0a2da For Diagnostic::Reset() also reset the state related to #pragma diagnostic. Fixes rdar://9170766. by Argyrios Kyrtzidis · 14 years ago
  70. cd1eecf Relax assertion to fail during crash recovery cleanup. by Ted Kremenek · 14 years ago
  71. 03201fb Use CrashRecoveryContextCleanup objects to reclaim resources from CompilerInstance objects. by Ted Kremenek · 14 years ago
  72. 4f5e21e Teach Diagnostic::setClient() to free the existing, owned by Douglas Gregor · 14 years ago
  73. 3efd52c Properly propagate #pragma diagnostic mappings from PCH but not command-line warning flags. by Argyrios Kyrtzidis · 14 years ago
  74. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 14 years ago
  75. a6a32e2 Initialize StoredDiagnostic's members in order. by Benjamin Kramer · 14 years ago
  76. aa5f135 Extend the libclang diagnostic API to provide information about the by Douglas Gregor · 14 years ago
  77. f2224d8 Since multiple diagnostics can share one diagnostic client, have the client keeping track by Argyrios Kyrtzidis · 14 years ago
  78. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
  79. e53a44b Teach Diagnostic to recursively expand inside %plural formats. by John McCall · 14 years ago
  80. b535041 Fix a silly bug in the suppression of non-error diagnostics in a by Douglas Gregor · 14 years ago
  81. d3ab63e Eliminate -fdiagnostics-binary and all of the infrastructure for by Douglas Gregor · 14 years ago
  82. 783c56f Simplify FixItHint by eliminated the unnecessary InsertionLoc by Douglas Gregor · 14 years ago
  83. 7a5bf5f Check whether errors should be included in the diagnostic counts. Previously, by Chandler Carruth · 14 years ago
  84. ba6f816 Remove dead code, caught by unused function warnings. by Argyrios Kyrtzidis · 14 years ago
  85. 270c035 PR7777: Set EnabledByDefault to something useful, instead of setting it by Eli Friedman · 14 years ago
  86. cc5888d Implement dependency analysis for the precompiled preamble. If any of by Douglas Gregor · 14 years ago
  87. 3c46e8d Fix namespace polution. by Dan Gohman · 14 years ago
  88. 3c2d301 Wrap bit mangling logic for DiagMappings in its own class so it doesn't leak by Benjamin Kramer · 14 years ago
  89. abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
  90. 0a76aae introduce a new CharSourceRange class, and enhance the diagnostics routines by Chris Lattner · 14 years ago
  91. 5edbdcc Add an option -fshow-overloads=best|all to limit the number of overload by Jeffrey Yasskin · 14 years ago
  92. 5ef12b3 Update the types for warning option subgroup arrays to 'short', we have more by Chandler Carruth · 14 years ago
  93. c9b8890 When -fdiagnostics-print-source-range-info is specified, by Chris Lattner · 14 years ago
  94. 27b0f51 add the ability to associate 'category' names with diagnostics by Chris Lattner · 14 years ago
  95. 575cf37 Introduce a limit on the depth of the template instantiation backtrace by Douglas Gregor · 14 years ago
  96. 1864f2e Once we've emitted a fatal diagnostic, keep counting errors but with a by Douglas Gregor · 14 years ago
  97. 04e4427 fix PR6814 - Only print [-pedantic] on a diagnostic if -pedantic by Chris Lattner · 14 years ago
  98. ec55c94 Fix null dereference in 'WriteSourceLocation' when the FileEntry is null. by Ted Kremenek · 14 years ago
  99. c100214 add clang -cc1 level support for "-ferror-limit 42" by Chris Lattner · 14 years ago
  100. b205ac9 add capabilities to stop emitting errors after some limit. by Chris Lattner · 14 years ago