1. b644405 Fix pasto, thanks to Anders for pointing this out. by Chris Lattner · 17 years ago
  2. ef8a3df Continuation of work on ObjC2's properties. by Fariborz Jahanian · 17 years ago
  3. 9fd7361 add arm support by Chris Lattner · 17 years ago
  4. 42214c5 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
  5. d1b6ef6 Fix improper dereference of end() iterator. Patch by Argiris Kirtzidis! by Ted Kremenek · 17 years ago
  6. 91f5201 Fix PR2236 Add test Implement feedback from Chris re: PR1998 by Nate Begeman · 17 years ago
  7. e77e03d Two improvements to initializer parsing: by Chris Lattner · 17 years ago
  8. 68c3db9 for exponent-related errors, emit the diagnostic on the 'e' or 'p'. by Chris Lattner · 17 years ago
  9. 40f43dd when emitting diagnostics about some character in a numeric by Chris Lattner · 17 years ago
  10. ad320b6 Only generate code for static functions and global variables that are actually used. by Nate Begeman · 17 years ago
  11. b2a0e61 Restructure and simplify Sema::ObjCQualifiedIdTypesAreCompatible, by Chris Lattner · 17 years ago
  12. 50d7cf4 html::EscapeText (using the Rewriter) now replaces tabs by default. by Ted Kremenek · 17 years ago
  13. d54d1f2 implement a fixme, add support for ++/-- on long double. by Chris Lattner · 17 years ago
  14. 70c3867 use simplified ConstantFP:get method. by Chris Lattner · 17 years ago
  15. b811500 replace form feeds with an <hr> tag. by Chris Lattner · 17 years ago
  16. 9d818a2 simplify the return of InitializePreprocessor to be bool instead of a fileid by Chris Lattner · 17 years ago
  17. 47b6a16 simplify ownership of the predefines buffer. by Chris Lattner · 17 years ago
  18. bfc6cce Gracefully handle when the receiver of a message expression is not a pointer type. by Ted Kremenek · 17 years ago
  19. 521948f Pass "-isysroot" option down to clang. by Ted Kremenek · 17 years ago
  20. 7c400a0 Fix spelling/grammar in comment. by Ted Kremenek · 17 years ago
  21. 422b0ac Use Digest::MD5 (a Perl module that should come bundled standard with Perl) to compute file digests instead of using the external program "sha1sum" (which may not be present). by Ted Kremenek · 17 years ago
  22. 8a70417 Generate code for annotation attributes. by Nate Begeman · 17 years ago
  23. 52da5c7 Add support to module codegen for adding and emitting annotations by Nate Begeman · 17 years ago
  24. 778fd3b Ignore qualifiers when attempting to match arguments to parameter types for by Nate Begeman · 17 years ago
  25. af6ed50 OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  26. 5814310 Another bug fix in emitting warnings without a path: construct a unit PathDiagnostic as we did by Ted Kremenek · 17 years ago
  27. c3cf450 fix __attribute__(format) for struct function pointer fields by Nuno Lopes · 17 years ago
  28. b6ed80a Remove bogus cast (<rdar://problem/5874848> clang objc-rewriter: structure with list of protocols has wrong cast). by Steve Naroff · 17 years ago
  29. 4c94eb9 Reenable using the PathDiagnosticClient for BugReports without paths. by Ted Kremenek · 17 years ago
  30. 056171b Use 'clang' binary in the same dir as scan-build; if it isn't there use the one in the path by Ted Kremenek · 17 years ago
  31. e615536 Implement FIXME discoved by <rdar://problem/5874876> Rewriter: Explicit ivar refs outside a method are being rewritten by Steve Naroff · 17 years ago
  32. 9715693 Turn on CF reference count checker. by Ted Kremenek · 17 years ago
  33. 133dfda Fix <rdar://problem/5874697> Rewriter: method arguments with complex types not being rewritten properly. by Steve Naroff · 17 years ago
  34. e376985 Generalize caching mechanism for bugs reports. Now individual BugTypes by Ted Kremenek · 17 years ago
  35. 0b03c6e Fixed more caching bugs related to the one fixed in r49914. Silence by Ted Kremenek · 17 years ago
  36. 3226570 Fixed elusive caching bug that led to false positives. by Ted Kremenek · 17 years ago
  37. eef8f1e Added "GetErrorNodes()" to BugType so that -trim-egraph can recognize errors by Ted Kremenek · 17 years ago
  38. 6da0f5a Added "EvalAssume" virtual method to GRTransferFuncs; this is for evaluating by Ted Kremenek · 17 years ago
  39. d5e35f8 Tabs -> spaces by Nate Begeman · 17 years ago
  40. ebd0bb7 Spelling fix. by Ted Kremenek · 17 years ago
  41. cfc909d Fixed bug in GREndPathNodeBuilder: only return a node if it wasn't in the node cache. by Ted Kremenek · 17 years ago
  42. c5b3820 scan-build now fixes permissions of report files and directories, which may by Ted Kremenek · 17 years ago
  43. f0a08a5 Compute a digest of each report file, and nuke reports that have the same by Ted Kremenek · 17 years ago
  44. 6017f7f Initialize default double width and alignment by Nate Begeman · 17 years ago
  45. 64c0a0f Allow targets to override double size, alignment, and semantics, and tie this by Nate Begeman · 17 years ago
  46. d45b722 Restore macro expansion for HTMLPrint by using the original Preprocessor. by Ted Kremenek · 17 years ago
  47. a8c6aa8 Provide a version of html::HighlightMacros that takes a Preprocessor&. by Ted Kremenek · 17 years ago
  48. 752b584 More grammar fixes. by Ted Kremenek · 17 years ago
  49. 0d9c17a Fix plurality debacle. by Ted Kremenek · 17 years ago
  50. 61de3a3 Fixed range highlighting bug in HTML diagnostics. by Ted Kremenek · 17 years ago
  51. a850395 Added path diagnostics for reference counts. by Ted Kremenek · 17 years ago
  52. 8e4b068 Make tab insertion really right: the number of spaces inserted by Chris Lattner · 17 years ago
  53. c3ad5fe Several Expr subclasses did not mark "getSourceRange()" virtual. Fixed. by Ted Kremenek · 17 years ago
  54. 2be7ddb BugReport::VisitNode now takes BugReporter& instead of ASTContext&. by Ted Kremenek · 17 years ago
  55. 0f638a0 Use HTML5 doctype when generating HTML. by Ted Kremenek · 17 years ago
  56. ac5e982 Added null check. by Ted Kremenek · 17 years ago
  57. 8fdc2b5 Updated CSS colors. Patch by Cedric Venet! by Ted Kremenek · 17 years ago
  58. 15c24fc Added test cases to test for reference count leaks. by Ted Kremenek · 17 years ago
  59. 270ab7d Simplified internal logic of BugReporter, consolidating EmitWarning and by Ted Kremenek · 17 years ago
  60. 0735b93 Fixed a bug in categories and properties. by Fariborz Jahanian · 17 years ago
  61. 78f7e31 Initial work for property implementation declarations. by Fariborz Jahanian · 17 years ago
  62. 2654fe7 Update VC++ project files. by Steve Naroff · 17 years ago
  63. 215d9fb Modified BugReport::getEndPath() to handle the case where end path is at by Ted Kremenek · 17 years ago
  64. 7f3f41a Hook up reporting reference count memory leaks to the BugReporter mechanism. by Ted Kremenek · 17 years ago
  65. ba6d7a8 Fix a problem noticed by Nuno, where we wouldn't escape characters in by Chris Lattner · 17 years ago
  66. 4e9899f class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 17 years ago
  67. 31001ed Handle text escaping (e.g. & -> &amp;) last, to avoid interactions between 'replace' operations and insert operations. This fixes a problem with "&;&" on line 666 of the gcc.c example I sent out. by Chris Lattner · 17 years ago
  68. 01d3bf7 Generate the Preprocessor using a local PreprocessorFactory object. by Ted Kremenek · 17 years ago
  69. 0287a2f don't give macros a background by Chris Lattner · 17 years ago
  70. 43f1f7d Make sure popup is on top over other spans. wrap long line. by Chris Lattner · 17 years ago
  71. 5ab36b0 Added "PreprocessorFactory", an interface for lazily creating Preprocessor objects on-demand. by Ted Kremenek · 17 years ago
  72. aeab7ff Add support in HTML macro expansion for hovering over a macro and automatically by Ted Kremenek · 17 years ago
  73. c52b588 Temporarily disable macro expansion in the HTML output of HTMLDiagnostics to by Ted Kremenek · 17 years ago
  74. 4cad9d9 HAve HTMLDiagnostics use html::HighlightRange to highlight message ranges. by Ted Kremenek · 17 years ago
  75. 8516e9a Added property decl support for protocols. by Fariborz Jahanian · 17 years ago
  76. d9ccf68 Added transfer function support for ReturnStmt to support detecting leaks by Ted Kremenek · 17 years ago
  77. 01d7427 Allow redirecting text diagnostic printer output to any llvm::OStream, rather by Nate Begeman · 17 years ago
  78. 9d0d8bf Use TranslationUnitDecl as DeclContext of builtin functions. by Argiris Kirtzidis · 17 years ago
  79. d358600 Addition of TranslationUnitDecl to the AST: by Argiris Kirtzidis · 17 years ago
  80. 2d22f4e Fix MSVC compiler error: "initialization of 'VD' is skipped by 'case' label" by Argiris Kirtzidis · 17 years ago
  81. 2d58fd9 insert macro expansions into floating divs. For now, they are always displayed, by Chris Lattner · 17 years ago
  82. 64293f8 correctly hilight multi-line macro definitions and other by Chris Lattner · 17 years ago
  83. af0100e Make HighlightRange correctly handle multi-line ranges. This causes us to by Chris Lattner · 17 years ago
  84. c208f4e Handle ReturnStmts by dispatching to "EvalReturn" in the transfer function object. by Ted Kremenek · 17 years ago
  85. 7e0d2dd add a new HighlightRange API, it doesn't handle multiline ranges by Chris Lattner · 17 years ago
  86. 3f3c9c8 CF ref. count checker: Register memory leaks at the end of a path. by Ted Kremenek · 17 years ago
  87. 1e54cc5 Bug fix in GREndPathNodeBuilderImpl: Use the specified state to construct by Ted Kremenek · 17 years ago
  88. 65a8173 New AST class for property implementation declarations. by Fariborz Jahanian · 17 years ago
  89. 5742a0f Fixed a comment. by Fariborz Jahanian · 17 years ago
  90. 79f0a63 Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a block's terminator. by Ted Kremenek · 17 years ago
  91. 52ff844 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 17 years ago
  92. 9e0df79 reenable highlighting of (the first line of) comments by Chris Lattner · 17 years ago
  93. 926d24a switch from relexing with the preprocessor to do syntax highlighting to relexing by Chris Lattner · 17 years ago
  94. 0c14933 Add extra test cases to test "escaping" for the reference count checker. by Ted Kremenek · 17 years ago
  95. 7aef484 Small tweaks to EvalStore: pass an "RVal" instead of "LVal" for the TargetLV to by Ted Kremenek · 17 years ago
  96. 364c43c Update XCode project (added GRTransferFuncs.cpp). by Ted Kremenek · 17 years ago
  97. 36cf32c Add missing file. by Ted Kremenek · 17 years ago
  98. 4d22f0e Hook up "EvalStore" from GRTransferFuncs to GRExprEngine. by Ted Kremenek · 17 years ago
  99. f506958 Take first step to migrating handling of "stores" to values from GRExprEngine by Ted Kremenek · 17 years ago
  100. 5ae4e83 LiveVariables now updates the liveness state of block-level expressions that by Ted Kremenek · 17 years ago