1. 6ccb91a fix css font name, patch by Cédric Venet by Chris Lattner · 17 years ago
  2. 19bf719 don't dereference hte end iterator when inserting at end of buffer. by Chris Lattner · 17 years ago
  3. 3ae30f8 templates can't be static. by Chris Lattner · 17 years ago
  4. e0def75 fix a number of const qualification bugs. by Chris Lattner · 17 years ago
  5. 5483bdf add a missing #include by Chris Lattner · 17 years ago
  6. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  7. a798ebc Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
  8. b10f273 Avoid implicitly including any header files (requested by ckane). by Steve Naroff · 17 years ago
  9. c5e3277 Rewrite @package (an ObjC 2.0 idiom). by Steve Naroff · 17 years ago
  10. 563b828 Fix MS-specific bug in RewriteTest::RewriteObjCMethodDecl(). by Steve Naroff · 17 years ago
  11. d98aab5 Add BugReporter.cpp to VC++ project file. by Steve Naroff · 17 years ago
  12. 0c29b22 Support MS-specific integer suffixes (i8, i16, i32, i64, i128). by Steve Naroff · 17 years ago
  13. f81557c Fix PR2049, updating Eli's patch that fixes to mainline. This produces incorrect by Chris Lattner · 17 years ago
  14. b6e64c5 Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: by Steve Naroff · 17 years ago
  15. 8ace0d5 Add DeclBase.h to Xcode project. by Steve Naroff · 17 years ago
  16. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
  17. f23d364 add an isAnyComplexType() method, which returns true for both by Chris Lattner · 17 years ago
  18. 72858c9 updates from David. by Chris Lattner · 17 years ago
  19. be09ede various bug fixes, add to xcode project. by Chris Lattner · 17 years ago
  20. 7ba9c60 initial checkin of Étoilé runtime support, patch by David Chisnall by Chris Lattner · 17 years ago
  21. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
  22. d389465 - ccc: print generated command line to stdout instead of stderr by Seo Sanghyeon · 17 years ago
  23. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
  24. 730f2c1 fix build error: add missing braces. by Torok Edwin · 17 years ago
  25. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
  26. c8aa5f1 Codegen assignment to self correctly, patch by David Chisnall! by Chris Lattner · 17 years ago
  27. 1330b0e Ignore qualifiers when checking vector operands, just like scalar operands. by Nate Begeman · 17 years ago
  28. 7956f75 Added investigate patch for an occasionally failing assertion (heisenbug?) by Ted Kremenek · 17 years ago
  29. 8cb53fb Remove bogus check to prune out analyzing files. by Ted Kremenek · 17 years ago
  30. f5221b0 More reliably remove '\n' from queries of the location of ccc-analyzer by Ted Kremenek · 17 years ago
  31. 4f4b17d Use full path to ccc-analyzer. by Ted Kremenek · 17 years ago
  32. dbebb73 Teach clang how to codegen punpcklbw and punpcklwd by Nate Begeman · 17 years ago
  33. b22d589 Make typedefs public. by Ted Kremenek · 17 years ago
  34. a2fdbf5 Better range highlight for undefined-argument checks. by Ted Kremenek · 17 years ago
  35. a7bf7e7 When reporting "bad receiver" warnings, highlight the receiver. by Ted Kremenek · 17 years ago
  36. de7161f Use "getRanges" in default implementation of "getEndPath" to determine by Ted Kremenek · 17 years ago
  37. f1ae705 Hooked up GRSimpleAPICheck and the simple Objective-C Foundation checks to use by Ted Kremenek · 17 years ago
  38. 84867e6 Mark nodes as sinks that GRAuditor says should be marked as sinks. by Ted Kremenek · 17 years ago
  39. 344f7e3 Use logical line number for BUGLINE. by Ted Kremenek · 17 years ago
  40. 1758b07 Added "getLogicalLineNumber" and "getLogicalColumnNumber" to FullSourceLoc. by Ted Kremenek · 17 years ago
  41. 2f2418e Remove handling of impossible "-?" option. by Sam Bishop · 17 years ago
  42. 0f9c72f trivial whitespace fix by Sam Bishop · 17 years ago
  43. 70d1722 Handle the case when getEndPath() returns NULL. by Ted Kremenek · 17 years ago
  44. 9c600ff Don't run the analyzer on files whose language is "unknown" by Ted Kremenek · 17 years ago
  45. 7e76944 Added guard for printing out PathDiagnostics whose last element ends with by Ted Kremenek · 17 years ago
  46. 49cd635 Some cleanups in EscapeText and AddLineNumbers. Still investigating performance by Ted Kremenek · 17 years ago
  47. 10f883f Remove impossible "-?" option. by Ted Kremenek · 17 years ago
  48. ec5d81b Added "isFileID()" to FullSourceLoc. by Ted Kremenek · 17 years ago
  49. bba1cf5 CSS/HTML generation tweaks for index.html: Remove special "classes" for <td> by Ted Kremenek · 17 years ago
  50. fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 17 years ago
  51. 71de20e Created a destructor so that the top-level decls can be deleted. by Sam Bishop · 17 years ago
  52. 7dd1cf4 Temporarily make the Decl virtual destructor public, so that calls to "delete" by Sam Bishop · 17 years ago
  53. 1c19245 Add back bug name to PathDiagnostic. by Ted Kremenek · 17 years ago
  54. bc896f5 Fix a bug where we didn't check the RHS for null, we checked by Chris Lattner · 17 years ago
  55. 988ee6e qualifier comparisons should be done on canonical types. by Chris Lattner · 17 years ago
  56. 4ccea1a Call delete on the deserialized TranslationUnit object. by Sam Bishop · 17 years ago
  57. 8266d7f Call "delete" on the body of FunctionDecls. by Sam Bishop · 17 years ago
  58. 94826a7 When creating PathDiagnostics, created a trimmed graph first and report the by Ted Kremenek · 17 years ago
  59. 7ebde95 Added node_iterator to ExplodedGraph to allow iteration over all nodes in by Ted Kremenek · 17 years ago
  60. d45d268 Updated Xcode project to include BugReporter.[cpp,h]. by Ted Kremenek · 17 years ago
  61. 61f3e05 Created new path-sensitive bug-reporting scheme based on the classes by Ted Kremenek · 17 years ago
  62. d065d60 Added missing #ifndef...#define...#endif directives to protect against by Ted Kremenek · 17 years ago
  63. 9e628a0 CSS tweaking on blue boxes. by Ted Kremenek · 17 years ago
  64. 07b39fc 80 col violation by Ted Kremenek · 17 years ago
  65. 87abc03 Added more PathDiagnostic rendering for terminators: switch, goto, loops. by Ted Kremenek · 17 years ago
  66. f23621f Blue diagnostic boxes. by Ted Kremenek · 17 years ago
  67. 718ceb1 Added path sequence numbers in HTML output of PathDiagnostics. by Ted Kremenek · 17 years ago
  68. 3352fba Fix initialization bug. by Ted Kremenek · 17 years ago
  69. b947639 Embed BUGLINE, BUGFILE, BUGPATHLENGTH in the emitted HTML file. by Ted Kremenek · 17 years ago
  70. 22d6a63 Made bug index tables sortable. by Ted Kremenek · 17 years ago
  71. 725779a Added "back()" method to PathDiagnostic to access the last piece in a path. by Ted Kremenek · 17 years ago
  72. 7f8a325 Initial work on CSS in generated index.html. by Ted Kremenek · 17 years ago
  73. 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
  74. 5744dc2 Initial support for generating index.html file. by Ted Kremenek · 17 years ago
  75. 86b4381 Put "BUGDESC" comment tag on its own line. by Ted Kremenek · 17 years ago
  76. 3cc9fdc Shorted bug-description. by Ted Kremenek · 17 years ago
  77. 423a3c9 simplify some code by using PointerLikeType. by Chris Lattner · 17 years ago
  78. bdcd637 add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 17 years ago
  79. 987798a properly handle array decay in objc message exprs. by Chris Lattner · 17 years ago
  80. 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
  81. 2f54af4 Added path-sensitive null dereference test case. by Ted Kremenek · 17 years ago
  82. 39eefde More wording cleanups in --help text. by Ted Kremenek · 17 years ago
  83. f02e8db More wording fixes. by Ted Kremenek · 17 years ago
  84. 0062ad4 Added error message for unrecognized options. by Ted Kremenek · 17 years ago
  85. af08f64 Wording cleanups. by Ted Kremenek · 17 years ago
  86. 7442ca6 Implemented "-k" support. by Ted Kremenek · 17 years ago
  87. 6a43ba9 Do equality testing, not regex, when the build command is gcc. This matches by Ted Kremenek · 17 years ago
  88. b327ce0 by Steve Naroff · 17 years ago
  89. dd59811 Beginning of some cleanups; start generating path diagnostics using objects by Ted Kremenek · 17 years ago
  90. 0249378 Minor wording changes. by Ted Kremenek · 17 years ago
  91. 0761540 Embed "DESC" tag in HTML reports. by Ted Kremenek · 17 years ago
  92. 845ddbc Added "description" field to PathDiagnostic. by Ted Kremenek · 17 years ago
  93. d805bec Various parts of the standard require something to be an "incomplete or by Chris Lattner · 17 years ago
  94. 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
  95. d965455 Add a citation. by Chris Lattner · 17 years ago
  96. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
  97. 503d613 Added initial hacked support for display path diagnostics with by Ted Kremenek · 17 years ago
  98. 0e8a3c7 Fix copy-paste error. by Ted Kremenek · 17 years ago
  99. 8527f82 remove blank line. by Chris Lattner · 17 years ago
  100. bad3785 print cvr qualifiers on simplified typedefs by Chris Lattner · 17 years ago