1. 6590d21 Simplify some code, don't force the triple to a darwin triple if non-darwin. by Chris Lattner · 17 years ago
  2. 31e703b Moved creation of SourceManager, HeaderSearch, TargetInfo, and LangOptions by Ted Kremenek · 17 years ago
  3. 2eefd86 Modified the internals of Diagnostic and DiagnosticClient to use by Ted Kremenek · 17 years ago
  4. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  5. b3de9e7 avoid ///usr/include/foo.h, patch by Sean Middleditch by Chris Lattner · 17 years ago
  6. 8904f15 Subdivided the function InitializeBaseLanguage into InitializeBaseLanguage, by Ted Kremenek · 17 years ago
  7. 4f03783 Avoid passing Diags into InitializeIncludePaths. by Chris Lattner · 17 years ago
  8. acc9f33 Modified: CreateTargetInfo(). Now takes Diagnostic* instead of Diagnostic&. by Ted Kremenek · 17 years ago
  9. db094a2 Moved creation of ASTConsumers that can operate on both freshly-parsed and by Ted Kremenek · 17 years ago
  10. dca2466 Added serialization support of SourceManager to the clang driver. by Ted Kremenek · 17 years ago
  11. 05ca599 Fixed order of operands to strstr call. by Ted Kremenek · 17 years ago
  12. aead472 For target processing, on non-Darwin systems instead of using the host triple, by Ted Kremenek · 17 years ago
  13. c4ca288 Implemented serialization of TargetInfo. by Ted Kremenek · 17 years ago
  14. 9b4ebc2 Few cleanups to patch 44551: by Ted Kremenek · 17 years ago
  15. ae36076 Implemented initial support for "-triple" option to the clang driver. This by Ted Kremenek · 17 years ago
  16. e365c50 pass diagnostics into the rewrite test client. by Chris Lattner · 17 years ago
  17. 695dbb6 Support lax vector conversions. by Anders Carlsson · 17 years ago
  18. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  19. 8aebcb7 Break out bool/true/false support into a LangOption by Nate Begeman · 17 years ago
  20. db87bca Added -Wfloat-equal option to the driver. This makes warnings about by Ted Kremenek · 17 years ago
  21. 31e6c7d Fix ownership model of ParseAST to allow the dtor of by Chris Lattner · 17 years ago
  22. b4292f2 by Steve Naroff · 17 years ago
  23. 2b65a9d wean the diagnostics machinery off the preprocessor. by Chris Lattner · 17 years ago
  24. bfa82c4 Started work on clang object serialization. Experimental by Ted Kremenek · 17 years ago
  25. ee98ac5 Add support for Pascal strings. by Anders Carlsson · 17 years ago
  26. 77cd2a0 add scafolding to play around with and bring up the code rewriter. by Chris Lattner · 17 years ago
  27. ea254db rename -parse-ast-view to -ast-view by Chris Lattner · 17 years ago
  28. 3b427b3 rename -parse-ast-print to -ast-print by Chris Lattner · 17 years ago
  29. 53b0dab Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  30. 057aaf6 convert driver over to use Token::is/isNot APIs. fwew, all done. by Chris Lattner · 17 years ago
  31. 97e8b6f Rename ASTStreamers.* -> ASTConsumers.* by Chris Lattner · 17 years ago
  32. d15fa82 speed up clang startup another 28% by avoiding std::vector<std::string> by Chris Lattner · 17 years ago
  33. 9f3d942 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
  34. 41193e4 Moved "VerifyDiagnostics" variable declaration to right below ProgAction by Ted Kremenek · 17 years ago
  35. d39bcd8 Refactored driver so that any action that is implemented using an by Ted Kremenek · 17 years ago
  36. 4457978 Added "CheckASTConsumer", a function that generalizes by Ted Kremenek · 17 years ago
  37. 786d337 Changed command line options "-check-dead-stores" and by Ted Kremenek · 17 years ago
  38. 80de08f Added support to clang driver to view ASTs using GraphViz. This by Ted Kremenek · 17 years ago
  39. 91a0c62 Made driver flag --check-uninit-values more self-explanatory. by Ted Kremenek · 17 years ago
  40. 2bf5514 UninitialuzedValues now only tracks BlockVarDecls; obviating false positives with by Ted Kremenek · 17 years ago
  41. 580980b switch the llvm emitter to ASTConsumer interface. by Chris Lattner · 17 years ago
  42. c0508f9 switch the various CFG-based stuff over to using ASTConsumer interface, by Chris Lattner · 17 years ago
  43. 3d4997d convert ast printer and dumper ocver to ASTConsumer interface, by Chris Lattner · 17 years ago
  44. 556beb7 add a new ASTConsumer consumer to simplify stuff in the driver. by Chris Lattner · 17 years ago
  45. 055c275 Added "Dead Stores", a flow-sensitive checker that checks for stores by Ted Kremenek · 17 years ago
  46. 27b07c5 LiveVariables: by Ted Kremenek · 17 years ago
  47. e4e6334 Added an early implementation of Live-Variables analysis built on by Ted Kremenek · 17 years ago
  48. 7dba860 Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow by Ted Kremenek · 17 years ago
  49. 0c94641 Add isysroot support, patch by Keith Bauer by Chris Lattner · 17 years ago
  50. fddd518 Added CFG infrastructure (CFG.cpp and CFG.h) for clang ASTs. by Ted Kremenek · 17 years ago
  51. 6000dac add a new AST dumper interface (E->dump()). This dumps out by Chris Lattner · 17 years ago
  52. 94fea5a GCC doesn't set __STDC_VERSION__ usually. It never sets it in by Chris Lattner · 17 years ago
  53. bd24776 when running in -E mode on multiple files, there is no reason to accumulate by Chris Lattner · 17 years ago
  54. 96f1a64 Return an exit code of 1 if errors occur, not an exit code equal to the # errors :) by Chris Lattner · 17 years ago
  55. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  56. d4b80f1 Add support for C++'0x keywords, patch by Doug Gregor by Chris Lattner · 17 years ago
  57. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago