1. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  2. dc7b641 Use a .def file for most of the diagnostic options. by Douglas Gregor · 12 years ago
  3. 02c23eb Make DiagnosticOptions intrusively reference-counted, and make sure by Douglas Gregor · 12 years ago
  4. 246b6aa Add template type diffing to Clang. This feature will provide a better by Richard Trieu · 13 years ago
  5. 6a1fd4a Tweek r156937 a bit so that the suggestions are correct. by Chad Rosier · 13 years ago
  6. ff1affe Warn about -Wno-foo where foo is an unknown warning option. This is helpful by Chad Rosier · 13 years ago
  7. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  8. 588e83b Fix 80-column violation. by Chad Rosier · 13 years ago
  9. 11583c7 Due to a bug, -Wno-everything works like -Weverything. Fix the bug by having by Argyrios Kyrtzidis · 13 years ago
  10. c876946 Treat -Wformat=0 as an alias for -Wformat. by Hans Wennborg · 13 years ago
  11. 08d6e03 C++11 constexpr: Add note stacks containing backtraces if constant evaluation by Richard Smith · 13 years ago
  12. 4e96944 Add missing equals. by Benjamin Kramer · 13 years ago
  13. 99643d9 Typo. by Chad Rosier · 13 years ago
  14. 496cc8e Fix a regression from 143657. The second pass of the warning options should only be emitting by Chad Rosier · 13 years ago
  15. dce6327 Warning option typo correction: When two options have the same edit_distance don't display either. by Benjamin Kramer · 13 years ago
  16. a70cb9d Print a typo correction hint for unknown warning flags. by Benjamin Kramer · 13 years ago
  17. 05272a6 Parse the warning options twice. The first pass sets diagnostic state, while by Chad Rosier · 13 years ago
  18. 4aa8f2b Basic/Diagnostic: Factor out by Daniel Dunbar · 13 years ago
  19. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
  20. 1e473cc Implement '-Weverything', which enables all warnings except those explicitly mapped to be ignored. by Ted Kremenek · 13 years ago
  21. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  22. 5a4cca2 Don't warn about -Wno-foo where foo is an unknown warning option. Explicitly by Matt Beaumont-Gay · 14 years ago
  23. 477aab6 A StringRef-ication of the DiagnosticIDs API and internals. by Argyrios Kyrtzidis · 14 years ago
  24. 5edbdcc Add an option -fshow-overloads=best|all to limit the number of overload by Jeffrey Yasskin · 15 years ago
  25. 575cf37 Introduce a limit on the depth of the template instantiation backtrace by Douglas Gregor · 15 years ago
  26. c100214 add clang -cc1 level support for "-ferror-limit 42" by Chris Lattner · 15 years ago
  27. 5bf932b Simplify ProcessWarningOptions since it can't fail by Kovarththanan Rajaratnam · 15 years ago
  28. a3b089e switch -Werror/-Wfatal-errors error conditions to use diagnostics instead by Chris Lattner · 15 years ago
  29. e663c72 implement -W[no-]fatal-errors, patch by Christian Adåker! by Chris Lattner · 15 years ago
  30. 6907943 Move warning options into DiagnosticOptions. by Daniel Dunbar · 15 years ago
  31. 0f9fed7 Add Diagnostic::Report method for reporting diagnostics without a location. by Daniel Dunbar · 15 years ago
  32. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  33. b1d76bd PR4715 by Shantonu Sen · 15 years ago
  34. 8ea841b switch Warnings.cpp to use the diagnostics machinery to print diagnostics, not *fprintf*! by Chris Lattner · 16 years ago
  35. ac8d629 Clean up some unnecessary includes. by Eli Friedman · 16 years ago
  36. b09f6e1 Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp by Eli Friedman · 16 years ago[Renamed (98%) from tools/clang-cc/Warnings.cpp]
  37. 0eeb86e Move the warning options from Warnings.cpp to clang-cc.cpp. by Eli Friedman · 16 years ago
  38. 3bc172b move group twiddling options into Diagnostic.cpp instead of by Chris Lattner · 16 years ago
  39. 5b912d9 Fix PR4007: clang doesn't know -Werror-foo is the same as -Werror=foo by Chris Lattner · 16 years ago
  40. d51d74a implement framework for -fdiagnostics-show-option, but tblgen isn't by Chris Lattner · 16 years ago
  41. b54b276 move handling of -pedantic and -pedantic-errors into Diagnostics, by Chris Lattner · 16 years ago
  42. 2b07d8f arrange for -Wno-error=foo warnings to be immune to -Werror as by Chris Lattner · 16 years ago
  43. 8ac3af9 when tblgen fills in all the subgroup info, clang is ready for it. by Chris Lattner · 16 years ago
  44. 9a7e556 make unknown warnings a warning, not an error. by Chris Lattner · 16 years ago
  45. c83b60d add support for -Wextra and -W by Chris Lattner · 16 years ago
  46. d7492c4 use tablgen-generated warning groups. by Chris Lattner · 16 years ago
  47. af00883 now that we've decoupled diagnostic classes from default mappings, by Chris Lattner · 16 years ago
  48. 9dbbdbf rename variable in comment, not just in code :). by Chris Lattner · 16 years ago
  49. 27ceb9d Rejigger how -pedantic and -pedantic-errors work and their interaction by Chris Lattner · 16 years ago
  50. e9e0cc7 remove some commented out -Wstrict-selector-match stuff. by Chris Lattner · 16 years ago
  51. 6280dbc clean up error messages. by Chris Lattner · 16 years ago
  52. 1d13a5d Add support for -Werror=foo and -Wno-error=foo by Chris Lattner · 16 years ago
  53. 5147e8e refactor a bunch of the warning parsing stuff to simplify it. This removes the by Chris Lattner · 16 years ago
  54. 7eba5c9 add support for -W[no-]extra-tokens by Chris Lattner · 16 years ago
  55. 3c304bd add some #includes for better compatibility with gcc 4.4, by Chris Lattner · 16 years ago
  56. d613c3d add support for -Wtrigraphs and -Wno-trigraphs. by Chris Lattner · 16 years ago
  57. 8499f3f Implement -Wmissing-prototypes. Fixes PR3911. by Douglas Gregor · 16 years ago
  58. 17f689f Add support for -Wdeprecated-declarations. by Steve Naroff · 16 years ago
  59. 757e0dd Implement -Wno-pointer-sign. by Eli Friedman · 16 years ago
  60. 073777f Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 16 years ago[Renamed from Driver/Warnings.cpp]
  61. 525c4b0 Allow notes to be printed following a fatal error, then suppress any by Douglas Gregor · 16 years ago
  62. db7bc58 implement -Wsystem-headers, eliminating the wierd thing I added for testing. by Chris Lattner · 16 years ago
  63. c5613db Improve error messages on bad warning options. by Sebastian Redl · 16 years ago
  64. 63a9e0f Implement the machinery that can process TableGenerated warning options. by Sebastian Redl · 16 years ago