1. 877866b - ccc: print generated command line to stdout instead of stderr by Seo Sanghyeon · 17 years ago
  2. e330ae7 PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
  3. 3b846b1 fix build error: add missing braces. by Edwin Török · 17 years ago
  4. eee57c0 Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
  5. 6e6a597 Codegen assignment to self correctly, patch by David Chisnall! by Chris Lattner · 17 years ago
  6. 0310557 Ignore qualifiers when checking vector operands, just like scalar operands. by Nate Begeman · 17 years ago
  7. 92c78b6 Added investigate patch for an occasionally failing assertion (heisenbug?) by Ted Kremenek · 17 years ago
  8. 8136f38 Remove bogus check to prune out analyzing files. by Ted Kremenek · 17 years ago
  9. e38a11d More reliably remove '\n' from queries of the location of ccc-analyzer by Ted Kremenek · 17 years ago
  10. 47bf389 Use full path to ccc-analyzer. by Ted Kremenek · 17 years ago
  11. 0822c19 Teach clang how to codegen punpcklbw and punpcklwd by Nate Begeman · 17 years ago
  12. 175f1c5 Make typedefs public. by Ted Kremenek · 17 years ago
  13. f68e9d0 Better range highlight for undefined-argument checks. by Ted Kremenek · 17 years ago
  14. ccfa35b When reporting "bad receiver" warnings, highlight the receiver. by Ted Kremenek · 17 years ago
  15. 521b294 Use "getRanges" in default implementation of "getEndPath" to determine by Ted Kremenek · 17 years ago
  16. f00daf0 Hooked up GRSimpleAPICheck and the simple Objective-C Foundation checks to use by Ted Kremenek · 17 years ago
  17. 61912d2 Mark nodes as sinks that GRAuditor says should be marked as sinks. by Ted Kremenek · 17 years ago
  18. 1436990 Use logical line number for BUGLINE. by Ted Kremenek · 17 years ago
  19. 54042a5 Added "getLogicalLineNumber" and "getLogicalColumnNumber" to FullSourceLoc. by Ted Kremenek · 17 years ago
  20. a328151 Remove handling of impossible "-?" option. by Sam Bishop · 17 years ago
  21. fc8584c trivial whitespace fix by Sam Bishop · 17 years ago
  22. 1f997b1 Handle the case when getEndPath() returns NULL. by Ted Kremenek · 17 years ago
  23. 91bb5de Don't run the analyzer on files whose language is "unknown" by Ted Kremenek · 17 years ago
  24. 21aa096 Added guard for printing out PathDiagnostics whose last element ends with by Ted Kremenek · 17 years ago
  25. a51e21d Some cleanups in EscapeText and AddLineNumbers. Still investigating performance by Ted Kremenek · 17 years ago
  26. e9c91a8 Remove impossible "-?" option. by Ted Kremenek · 17 years ago
  27. 8c2044b Added "isFileID()" to FullSourceLoc. by Ted Kremenek · 17 years ago
  28. 3847183 CSS/HTML generation tweaks for index.html: Remove special "classes" for <td> by Ted Kremenek · 17 years ago
  29. 35ca50c Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 17 years ago
  30. 4949251 Created a destructor so that the top-level decls can be deleted. by Sam Bishop · 17 years ago
  31. 74af9e9 Temporarily make the Decl virtual destructor public, so that calls to "delete" by Sam Bishop · 17 years ago
  32. 5d058c4 Add back bug name to PathDiagnostic. by Ted Kremenek · 17 years ago
  33. 56a5cd6 Fix a bug where we didn't check the RHS for null, we checked by Chris Lattner · 17 years ago
  34. 4d5670b qualifier comparisons should be done on canonical types. by Chris Lattner · 17 years ago
  35. 6e104ec Call delete on the deserialized TranslationUnit object. by Sam Bishop · 17 years ago
  36. 7a7445e Call "delete" on the body of FunctionDecls. by Sam Bishop · 17 years ago
  37. 7d8674e When creating PathDiagnostics, created a trimmed graph first and report the by Ted Kremenek · 17 years ago
  38. 9f3f0fd Added node_iterator to ExplodedGraph to allow iteration over all nodes in by Ted Kremenek · 17 years ago
  39. fd966e2 Updated Xcode project to include BugReporter.[cpp,h]. by Ted Kremenek · 17 years ago
  40. 7d88220 Created new path-sensitive bug-reporting scheme based on the classes by Ted Kremenek · 17 years ago
  41. e5bcec0 Added missing #ifndef...#define...#endif directives to protect against by Ted Kremenek · 17 years ago
  42. fa751d0 CSS tweaking on blue boxes. by Ted Kremenek · 17 years ago
  43. abe37c8 80 col violation by Ted Kremenek · 17 years ago
  44. 07d4620 Added more PathDiagnostic rendering for terminators: switch, goto, loops. by Ted Kremenek · 17 years ago
  45. 388b373 Blue diagnostic boxes. by Ted Kremenek · 17 years ago
  46. d8a68b2 Added path sequence numbers in HTML output of PathDiagnostics. by Ted Kremenek · 17 years ago
  47. c7065b3 Fix initialization bug. by Ted Kremenek · 17 years ago
  48. fe9b00f Embed BUGLINE, BUGFILE, BUGPATHLENGTH in the emitted HTML file. by Ted Kremenek · 17 years ago
  49. d5d4362 Made bug index tables sortable. by Ted Kremenek · 17 years ago
  50. 1e748a1 Added "back()" method to PathDiagnostic to access the last piece in a path. by Ted Kremenek · 17 years ago
  51. b59b754 Initial work on CSS in generated index.html. by Ted Kremenek · 17 years ago
  52. 1520816 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
  53. ed757e0 Initial support for generating index.html file. by Ted Kremenek · 17 years ago
  54. 1cae1f4 Put "BUGDESC" comment tag on its own line. by Ted Kremenek · 17 years ago
  55. 6761893 Shorted bug-description. by Ted Kremenek · 17 years ago
  56. a05f7d2 simplify some code by using PointerLikeType. by Chris Lattner · 17 years ago
  57. cfac88d add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 17 years ago
  58. a2ef082 properly handle array decay in objc message exprs. by Chris Lattner · 17 years ago
  59. 67241b4 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
  60. 97bfee8 Added path-sensitive null dereference test case. by Ted Kremenek · 17 years ago
  61. f76812d More wording cleanups in --help text. by Ted Kremenek · 17 years ago
  62. 707a9ad More wording fixes. by Ted Kremenek · 17 years ago
  63. 78965de Added error message for unrecognized options. by Ted Kremenek · 17 years ago
  64. d184377 Wording cleanups. by Ted Kremenek · 17 years ago
  65. 091f937 Implemented "-k" support. by Ted Kremenek · 17 years ago
  66. 404cb26 Do equality testing, not regex, when the build command is gcc. This matches by Ted Kremenek · 17 years ago
  67. 6384a01 by Steve Naroff · 17 years ago
  68. d1d4d75 Beginning of some cleanups; start generating path diagnostics using objects by Ted Kremenek · 17 years ago
  69. 4efca19 Minor wording changes. by Ted Kremenek · 17 years ago
  70. 44a70e1 Embed "DESC" tag in HTML reports. by Ted Kremenek · 17 years ago
  71. d42de4d Added "description" field to PathDiagnostic. by Ted Kremenek · 17 years ago
  72. 9db553e Various parts of the standard require something to be an "incomplete or by Chris Lattner · 17 years ago
  73. 5fcb38b 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
  74. da79b3f Add a citation. by Chris Lattner · 17 years ago
  75. 19eb97e Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
  76. 139bf40 Added initial hacked support for display path diagnostics with by Ted Kremenek · 17 years ago
  77. 642d531 Fix copy-paste error. by Ted Kremenek · 17 years ago
  78. d5e220f remove blank line. by Chris Lattner · 17 years ago
  79. 6c755cf print cvr qualifiers on simplified typedefs by Chris Lattner · 17 years ago
  80. d6c03a8 Added special handling when the build command is "gcc", "cc", or "llvm-gcc"; by Ted Kremenek · 17 years ago
  81. 48d7f38 rename some variables, fix 80 col violation. No functionality change. by Chris Lattner · 17 years ago
  82. 479982e a bunch of random cleanups by Sam Bishop · 17 years ago
  83. 67d3c8d Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
  84. 64334ea Fix a comment typo and add a couple suggestions from Chris. by Steve Naroff · 17 years ago
  85. e57c21a Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
  86. 138d885 Patch by Argiris Kirtzidis: Fix a dangling pointer error! by Ted Kremenek · 17 years ago
  87. 3a03400 Minor cleanups. by Ted Kremenek · 17 years ago
  88. b9177df Added help text for scan-build. by Ted Kremenek · 17 years ago
  89. c9d8fde Initial checking of 'scan-build' script, a script used to wrap builds and by Ted Kremenek · 17 years ago
  90. d960610 Update to match simplified llvm MemoryBuffer interfaces for files. by Chris Lattner · 17 years ago
  91. 2ba2358 prune dead #includes by Chris Lattner · 17 years ago
  92. 56f330d MemoryBuffer::getFile got smarter, obviating the need for readfilefast. by Chris Lattner · 17 years ago
  93. 7287979 Embed linkable IDs in message bubbles. by Ted Kremenek · 17 years ago
  94. 8666d84 improve comma consistency, yes I'm anal by Chris Lattner · 17 years ago
  95. cd2eb9b Better handling for tabs with message bubbles. by Ted Kremenek · 17 years ago
  96. dbdb01e When emitting HTML messages, take into account margin fusing due to tabs. by Ted Kremenek · 17 years ago
  97. d2b8d8e Do not abort ccc-analyzer script if an HTML directory is not specified. by Ted Kremenek · 17 years ago
  98. 0102b5b Do not prepend the keyword "[CHECKER]" to checker messages when using by Ted Kremenek · 17 years ago
  99. 1377e5f Hack ReadFileFast() to raise the threshold of memory mapped files (from 4->12 pages). by Steve Naroff · 17 years ago
  100. 8088f2c Include ranges in GRSimpleVals diagnostics. by Ted Kremenek · 17 years ago