1. 6bedfef Discard extra -isysroot options. This fixes: by Ted Kremenek · 16 years ago
  2. 67a3e89 Fix braindead bug, ID number was hardcoded. by Daniel Dunbar · 16 years ago
  3. e2e61e7 Fix <rdar://problem/6253149> property declaration doesn't declare getter and setter. by Steve Naroff · 16 years ago
  4. 630347d whitespace and comment changes, to fix grammar and 80 col violations by Nico Weber · 16 years ago
  5. 32fe5a9 Change a NOTE to a FIXME based on feedback from clattner. by Steve Naroff · 16 years ago
  6. 88857dc Updated checker build. by Ted Kremenek · 16 years ago
  7. 4b9846d Fix <rdar://problem/6252129> implementation of method in category doesn't effectively declare it for methods below. by Steve Naroff · 16 years ago
  8. 91de754 Fix <rdar://problem/6252108> assigning to argument passed to block should not require __block. by Steve Naroff · 16 years ago
  9. 70b5670 Fix rdar://6252231 - cannot call vsnprintf with va_list on x86_64, by Chris Lattner · 16 years ago
  10. b23469f Replace a comparison with a static list of builtins that was wrong (it by Chris Lattner · 16 years ago
  11. 631b135 Fix rdar://6251437, references to enum constant decls in a block by Chris Lattner · 16 years ago
  12. 510ea53 Add "Path Length" back to the table of bug reports. by Ted Kremenek · 16 years ago
  13. f85d66c Fix <rdar://problem/6252216> compare block to NULL. by Steve Naroff · 16 years ago
  14. 8354484 Add support for implicit rethrows in @catch blocks. by Daniel Dunbar · 16 years ago
  15. 8ca61b2 Skip redundant if. by Daniel Dunbar · 16 years ago
  16. b6f2395 Fix <rdar://problem/6252226> parser thinks block argument is undefined identifier in NSServices.m by Steve Naroff · 16 years ago
  17. 0ac66f7 (Update LLVM) Clean up obj-c exception generation to be a bit more by Daniel Dunbar · 16 years ago
  18. d04c935 Bug fix, codegen @catch(id<X> ...) acceptably. by Daniel Dunbar · 16 years ago
  19. b4bde39 Revert 56735. The old bug categories were more informative. by Ted Kremenek · 16 years ago
  20. 7a68b45 Simplify generate code for exceptions: by Daniel Dunbar · 16 years ago
  21. 9575eb3 Prefer llvm::Function::addFnAttr(...) to F->addAttribute(~0, ...). by Daniel Dunbar · 16 years ago
  22. 7a57b8d Simplify code to emit the unified return block and move it to the end by Daniel Dunbar · 16 years ago
  23. 4655e2e Bug fix, make sure to initialize exception object (to rethrow) even by Daniel Dunbar · 16 years ago
  24. 1c5e463 Easy fix for nasty bug, exception data buffer had wrong type == wrong by Daniel Dunbar · 16 years ago
  25. 61b5691 Delete trailing white space. It's over 80 columns. by Zhongxing Xu · 16 years ago
  26. 868b7d4 Remove automagic substitution of %llvmgcc - Is unused and somewhat unreliable. by Daniel Dunbar · 16 years ago
  27. 36cc63e Change "leaks" to have the category "Performance". by Ted Kremenek · 16 years ago
  28. 85fccc6 Fix function-attributes test case to not rely on llvm-gcc. by Daniel Dunbar · 16 years ago
  29. 4776f03 Fix attributes test case to not run clang umpteen times. by Daniel Dunbar · 16 years ago
  30. 4a1f5de Internally store the body of a BlockExpr using a Stmt* instead of a CompoundStmt*, and use the getBody() method to do the appropriate checking. This both removes the type-punning warnings in Expr.cpp and also makes BlockExpr have more consistency checks against modifications to its body (via StmtIterator). by Ted Kremenek · 16 years ago
  31. f82d2b2 Forgot to check in header file with last commit. by Ted Kremenek · 16 years ago
  32. 6b03451 Use a union instead of a bunch of magic casts to implement a variant. This removes the type-punning errors for DeclGroup. by Ted Kremenek · 16 years ago
  33. 115b413 Add more control-flow to test case. by Ted Kremenek · 16 years ago
  34. 0953567 Add CFG support for implicit-control flow for VLA size expressions within an SizeOfAlignOfTypeExpr. by Ted Kremenek · 16 years ago
  35. 2bb6eb8 Now Attributes are divided in three groups by Devang Patel · 16 years ago
  36. 4b3d9fb Updated checker build. by Ted Kremenek · 16 years ago
  37. 6f04406 clean up a bunch of fixme's I added, by moving by Chris Lattner · 16 years ago
  38. 7257ce2 Fix the rest of rdar://6243860 hopefully. This requires changing FileIDInfo by Chris Lattner · 16 years ago
  39. 717a46c fit in 80 cols. by Chris Lattner · 16 years ago
  40. 8a8ffa2 alphabetize files by Chris Lattner · 16 years ago
  41. d68a8d3 Do not create CFGs for functions/methods using blocks (need to add control-flow). by Ted Kremenek · 16 years ago
  42. e95a75b testcase for my previous patch. by Chris Lattner · 16 years ago
  43. 4668b57 emulate a bit of GCC path lookup weirdness: if a system by Chris Lattner · 16 years ago
  44. ba849be Enter a new scope for a @try block. by Ted Kremenek · 16 years ago
  45. 011665d Updated checker build. by Ted Kremenek · 16 years ago
  46. df8c7d7 Move VLA processing logic from LiveVariables to CFG construction. This way all dataflow analyses "see" the VLA size expressions. by Ted Kremenek · 16 years ago
  47. 076d6cb Tweak Expr::isModifiableLvalue() and Expr::isLvalue() to better deal with BlockDeclRef exprs. by Steve Naroff · 16 years ago
  48. 85abe6e Examine VLA size expressions when computing liveness information. by Ted Kremenek · 16 years ago
  49. 844eaf2 Change Radar reproducibility to "Always". by Daniel Dunbar · 16 years ago
  50. 28680d1 Parser support for prefix __attribute__ on @protocol. by Daniel Dunbar · 16 years ago
  51. d1d847c Sema support for format and noreturn attributes on Objective-C methods. by Daniel Dunbar · 16 years ago
  52. bddb14a Add support for CFString in format attribute. by Daniel Dunbar · 16 years ago
  53. 4767734 Add # of block pointer types to -print-stats. by Daniel Dunbar · 16 years ago
  54. 6fa81e7 Make clang preprocessed output a bit more like gcc output. by Daniel Dunbar · 16 years ago
  55. 8cc5d5e Update clang to pretend to be gcc-4.2. by Daniel Dunbar · 16 years ago
  56. 573a022 Comment fix. by Daniel Dunbar · 16 years ago
  57. ccc33e8 Updated checker build. by Ted Kremenek · 16 years ago
  58. 3637b89 Have @finally introduce a new scope. by Ted Kremenek · 16 years ago
  59. a85a9ef Large mechanical patch. by Devang Patel · 16 years ago
  60. 06b9cad Emulate gcc driver-driver functionality: run analyzer separately for each separate -arch option. by Ted Kremenek · 16 years ago
  61. 2e3ecfa Disable report crashes link for the time being. by Daniel Dunbar · 16 years ago
  62. eb41f98 Update Xcode project. by Ted Kremenek · 16 years ago
  63. a59d561 Added prototype implementation of the DeclGroup, DeclGroupRef, and DeclGroupOwningRef classes. by Ted Kremenek · 16 years ago
  64. cd1a646 Add link to report analyzer failures (parse errors, asserts, etc). by Daniel Dunbar · 16 years ago
  65. 7fae8c8 Update scan-build to add markers about crashes. by Daniel Dunbar · 16 years ago
  66. b78ff2b Include clang preprocessed sources as well with "crashes" output. by Ted Kremenek · 16 years ago
  67. 5ea7306 Use .txt extension for info files. by Ted Kremenek · 16 years ago
  68. 82324d6 Downgrade incompatible block pointer error to a warning (to be consistent with incompatible pointer warnings in general). by Steve Naroff · 16 years ago
  69. ae05909 Fix a couple harmless warnings when compiling optimized with gcc (reported by mrs@apple.com). by Steve Naroff · 16 years ago
  70. e2b66a8 Fix <rdar://problem/6243788> clang: Incorrect return statement for Blocks? by Steve Naroff · 16 years ago
  71. b810908 Add more testing of Obj-C property synthesis. by Daniel Dunbar · 16 years ago
  72. 09c46b3 Add scan-view '--allow-all-hosts' option, by default access is now by Daniel Dunbar · 16 years ago
  73. b8fadbf Update checker build. by Ted Kremenek · 16 years ago
  74. e628337 Fix some const-ness to keep the VisualStudio C++ compiler happy. by Steve Naroff · 16 years ago
  75. 62f09f5 Extend ASTContext::getTypeInfo() and ASTContext::getObjCEncodingForType() for BlockTypes. by Steve Naroff · 16 years ago
  76. 64589d0 Updated test case. by Ted Kremenek · 16 years ago
  77. f7f6c7b Implement Obj-C synthesized setters for copy / retain. by Daniel Dunbar · 16 years ago
  78. d82223f Implement Obj-C getter synthesis for copy and retain. by Daniel Dunbar · 16 years ago
  79. e856ac2 Refactor some CodeGen functionality: by Daniel Dunbar · 16 years ago
  80. f710372 Add Obj-C runtime methods to get runtime specific functions for by Daniel Dunbar · 16 years ago
  81. 6203cb7 Adjust whitespaces. by Devang Patel · 16 years ago
  82. 98bfe50 s/ParamAttrsWithIndex/FnAttributeWithIndex/g by Devang Patel · 16 years ago
  83. 60646b0 For generated index.html, look for "scan-view.css", not "/scan-view.css" by Ted Kremenek · 16 years ago
  84. 540ff47 Implement type checking of Objective-C property attributes. by Daniel Dunbar · 16 years ago
  85. 1409442 Fix <rdar://problem/6240065> clang: __BLOCKS__ should be defined. by Steve Naroff · 16 years ago
  86. 22a0ce5 RewriteBlocks::RewriteBlockPointerDecl(): Handle TypedefDecl's and VarDecl's uniformly. by Steve Naroff · 16 years ago
  87. 21998c0 Teach block rewriter to replace '^' with '*' in VarDecls. by Steve Naroff · 16 years ago
  88. 0eb3c13 Added test case. by Ted Kremenek · 16 years ago
  89. 3c528b6 Fix PR 2819: Compute dataflow values for all CFG blocks by not relying on having the "Exit" block being reachable by all (or any) of the blocks in the CFG. by Ted Kremenek · 16 years ago
  90. e5a80f2 Add x86_64 Linux target. - PR2824 by Daniel Dunbar · 16 years ago
  91. 10f1395 Updated checker build. by Ted Kremenek · 16 years ago
  92. f173b2c Bug fix, result of isIntegerConstantExpr could be of incorrect width by Daniel Dunbar · 16 years ago
  93. b84ec33 scan-view: Add header and "report bug" links to report pages. by Daniel Dunbar · 16 years ago
  94. 6fd6bd0 scan-view: Add links to open files using default file handler. by Daniel Dunbar · 16 years ago
  95. 1d177d3 Yank out special CSS for button rendering (not very portable or well tested, and we were encountering race conditions with CSS loading). by Ted Kremenek · 16 years ago
  96. f5d446f scan-view: Update for "button" class change, drop magic resolution of by Daniel Dunbar · 16 years ago
  97. a40b08f Reintegrate Daniel's changes. by Ted Kremenek · 16 years ago
  98. 03be7c0 Removed scan-view's version of scanview.css. by Ted Kremenek · 16 years ago
  99. 3a91c19 Add "SUMMARYENDHEAD" tag. by Ted Kremenek · 16 years ago
  100. bec5461 Don't embed CSS inside scan-build script; use external scanview.css. by Ted Kremenek · 16 years ago