1. 17d50a9 simplify some code. by Chris Lattner · 16 years ago
  2. fc513a6 remove duplicate error message. by Chris Lattner · 16 years ago
  3. 5ad2497 remove objc prefixes from these tests. by Chris Lattner · 16 years ago
  4. 1c2732e move all objc sema tests into a new SemaObjC directory. Next step is to by Chris Lattner · 16 years ago
  5. 4a68fe0 fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
  6. b99d749 improve handling of the horrible GCC objc extension that treats "<foo>" by Chris Lattner · 16 years ago
  7. bd69502 GCC supports the complex conjugate operator (an extension) on complex int by Chris Lattner · 16 years ago
  8. 6ff24a4 fix diagnostics. by Chris Lattner · 16 years ago
  9. dad8551 Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
  10. e02e440 Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 16 years ago
  11. 2aa6882 c89 does not perform array -> pointer promotion unless the array is an lvalue. This by Chris Lattner · 16 years ago
  12. c59df05 Fix long double test case by Daniel Dunbar · 16 years ago
  13. 03c430f In c99 mode, comma does do function/array promotion even though by Chris Lattner · 16 years ago
  14. 7d2217d Remove '.' in expected warning by Ted Kremenek · 16 years ago
  15. 4405b2e Comma does not perform unary promotions, rdar://6095180 by Chris Lattner · 16 years ago
  16. cae9a78 gcc requires a semicolon at the end of an interface, unlike its extension for structs. by Chris Lattner · 16 years ago
  17. 2c7e0e5 Cleaunup Sema::ActOnClassMessage(). This commit: by Steve Naroff · 16 years ago
  18. bef8d62 Reject typedef redefinitions when the underlying types are not identical, by Chris Lattner · 16 years ago
  19. 65691aa update this testcase. by Chris Lattner · 16 years ago
  20. b1cf9e8 Add test case for hex floating point constants in < C99 mode by Daniel Dunbar · 16 years ago
  21. 1b843a2 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 16 years ago
  22. 542adb1 Don't emit 'dead initialization' warnings for variables marked 'unused'. by Ted Kremenek · 16 years ago
  23. 7a7458c Rework codegen of case ranges by Daniel Dunbar · 16 years ago
  24. d4fecce Allow CLANG env variable to override "clang" command in TestRunner.sh by Daniel Dunbar · 16 years ago
  25. 65259c9 Correctly handle NSAssertionHandle -handleFailureInMethod:object:file:lineNumber:description: by Ted Kremenek · 16 years ago
  26. ccbc3ca Don't issue a missing +dealloc warning for classes that just contain SEL ivars. by Ted Kremenek · 16 years ago
  27. ab8b7cb Rename test case file. by Ted Kremenek · 16 years ago
  28. d1a6c67 Issue dead store warnings for preincrements involved in a subexpression. by Ted Kremenek · 16 years ago
  29. bc60678 Added dead stores test case. by Ted Kremenek · 16 years ago
  30. 8d48164 Further refine dead store checking to distinguish between dead stores and dead increments. by Ted Kremenek · 16 years ago
  31. 083541a Properly skip IBOutlets when checking for unused ivars. by Ted Kremenek · 16 years ago
  32. 8441802 Fix rdar://6094010 various asserts happening with wide strings in inline asm. by Chris Lattner · 16 years ago
  33. 3b8f5c6 Fix a codegen crash on: by Chris Lattner · 16 years ago
  34. bbafa5b Added path-sensitive checking for null pointer values passed to function arguments marked nonnull. by Ted Kremenek · 16 years ago
  35. 3384433 Implement bzero, memset, memmove builtins. by Daniel Dunbar · 16 years ago
  36. 5b0de85 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 16 years ago
  37. 178cee2 Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 16 years ago
  38. 29921c4 Add __builtin_powi[fl] support by Daniel Dunbar · 16 years ago
  39. 63f583b Fix a test RUN line to not generate '=-' in test directory by Daniel Dunbar · 16 years ago
  40. 726f4d4 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 16 years ago
  41. 5cece46 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
  42. 55a2433 when in the context of an @implementation, look for private methods in the by Chris Lattner · 16 years ago
  43. f914765 continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 16 years ago
  44. fffdb25 fix test by Nuno Lopes · 16 years ago
  45. e80517b Patch by Kovarththanan Rajaratnam: by Ted Kremenek · 16 years ago
  46. 87ca664 Added test case. by Ted Kremenek · 16 years ago
  47. 5f027ef Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  48. 4f071ec When in C++, make EnumConstant names hide tag names in the same scope, instead of colliding with them. by Argiris Kirtzidis · 16 years ago
  49. 9d0ff35 RewriteObjC::RewriteObjCTryStmt():Don't synthesize a catch begin if there are 0 catch clauses. by Steve Naroff · 16 years ago
  50. 5beb45f When checking for name collision between a tag and a previously defined namespace, the collision occured even when the tag was in a different nested scope. by Argiris Kirtzidis · 16 years ago
  51. 7aa0f4e For the MissingDealloc check, don't treat IBOutlet ivars as being needed to be released by Ted Kremenek · 16 years ago
  52. 6360004 Distinguish between dead stores and dead initializations. by Ted Kremenek · 16 years ago
  53. fbda0ef Provide an "Analysis Scope" for Analyses so checks can either be run on code declarations (bodies) or Objective-C @implementation blocks. by Ted Kremenek · 16 years ago
  54. c5f0f65 http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 16 years ago
  55. d072b89 Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  56. 621f140 Add test case. by Ted Kremenek · 16 years ago
  57. e728045 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 16 years ago
  58. 656ad0e '&&' commands together so that the test status reflects the results of all the commands, otherwise the test status will be the result of only the last command. by Argiris Kirtzidis · 16 years ago
  59. ef55147 '&&' clang commands together so that the test status reflects the results of all three clang executions. by Ted Kremenek · 16 years ago
  60. b4677db Fix a bug in the dead stores checker reported in the following email: by Ted Kremenek · 16 years ago
  61. f7ff2ce Skip the "-dealloc" check if a ObjC class contains no ivars. by Ted Kremenek · 16 years ago
  62. 724133b Added static analysis check to see if a subclass of NSObject implements -dealloc, and whether or not that implementation calls [super dealloc]. by Ted Kremenek · 16 years ago
  63. d5b9224 new testcase by Chris Lattner · 16 years ago
  64. 7dbdc63 Fix PR2252: don't warn on negating an unsigned value ever, and don't emit by Chris Lattner · 16 years ago
  65. 5bf0ad5 Fix PR2020 by recovering by defining an anonymous enum, instead of recovering by Chris Lattner · 16 years ago
  66. 4d67773 Update test case with new clang arguments. by Ted Kremenek · 16 years ago
  67. 56b5e45 Update test case: simply running "clang -checker-simple" doesn't invoke the dead store checker anymore. We need "-warn-dead-stores" as well. by Ted Kremenek · 16 years ago
  68. 60e2e34 Fix typo in test case. by Ted Kremenek · 16 years ago
  69. 81ea799 Added AnalysisConsumer, a meta-level ASTConsumer class to drive various by Ted Kremenek · 16 years ago
  70. 98600ac Added reference count checker test case. by Ted Kremenek · 16 years ago
  71. 38f1671 Add Sema support for C++ classes. by Argiris Kirtzidis · 16 years ago
  72. 50df41e Fix a bug reported by Kelly Wilson, where we incorrectly by Chris Lattner · 16 years ago
  73. 2024f0a Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 16 years ago
  74. f8009b4 Handle unnamed bitfields when parsing C++ classes. by Argiris Kirtzidis · 16 years ago
  75. 0832dbc Fix for PR2501; this patch makes usual arithmetic conversions for by Eli Friedman · 16 years ago
  76. 1121603 Fix a bug where we didn't promote 'const float' (or typedefs) to by Chris Lattner · 16 years ago
  77. c129055 Added a simple static analysis check to look for improper uses of CFCreateNumber. by Ted Kremenek · 16 years ago
  78. 4eb54d1 rename some attr tests for consistency. by Chris Lattner · 16 years ago
  79. 99dbc96 fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  80. aa37768 fix this testcase after Mon Ping's intrinsic rename. by Chris Lattner · 16 years ago
  81. 272aa85 CF ref checker: by Ted Kremenek · 16 years ago
  82. 9d78433 Add parsing support for C++ classes. by Argiris Kirtzidis · 16 years ago
  83. 6a1cc25 The CF retain/release checker now assumes that allocations do not fail. Eventually we will add a flag to the driver to enable allocation failures (documented as a FIXME). by Ted Kremenek · 16 years ago
  84. bac1245 "this patch adds code generation hooks for Objective-C constant strings. It also modifies Sema so that Objective-C constant strings are treated as untyped objects if the interface for the constant string class can not be found. This is consistent with Apple GCC. I thought it was consistent with GNU GCC, since this was causing failures when trying to compile GNUstep with (GNU) GCC, but it appears that this is not the case when attempting to produce a simple test case to demonstrate it. Possibly there is a way of making the error go away, but I haven't found out what it is yet." by Chris Lattner · 16 years ago
  85. 4e9553a "This moves built-in Objective-C types up the scope chains to where they can be replaced by versions included from the runtime library's headers." by Chris Lattner · 16 years ago
  86. 1bf58f6 add parser and sema support for the funny ObjC '@defs' thing. by Chris Lattner · 16 years ago
  87. 4423d37 Switch 'super' from being a weird cast thing to being a predefined expr node. by Chris Lattner · 16 years ago
  88. cf69f2c Include stdint.h instead of stdio.h. by Ted Kremenek · 16 years ago
  89. 8bef3ee Test the dead-store checker using both -warn-dead-stores and -checker-simple. by Ted Kremenek · 16 years ago
  90. 72f52c0 Modified the dead stores checker to... by Ted Kremenek · 16 years ago
  91. fe952cb Introduce initial transfer function support for __imag__ and __real__. We don't by Ted Kremenek · 16 years ago
  92. 2552fcc Make this test actually pass, in addition to the previous patch by Eli Friedman · 16 years ago
  93. da2e37c Remove Analysis-Apple. by Ted Kremenek · 16 years ago
  94. 9361358 Move test case "uninit-msg-expr.m" from Analysis-Apple to Analysis (now works on all platforms). by Ted Kremenek · 16 years ago
  95. 3e791d1 Moved test case NoReturn.m from Analysis-Apple to Analysis (now works on all platforms). by Ted Kremenek · 16 years ago
  96. f4653c0 Move NSString.m test case from Analysis-Apple to Analysis. The test case now works on all platforms. by Ted Kremenek · 16 years ago
  97. 9586d2d Update test case to use -pedantic (makes the test case more clear). by Ted Kremenek · 16 years ago
  98. 48e951f Fix misspelling of "svelte". by Ted Kremenek · 16 years ago
  99. 8f8536d Move Analysis-Apple/CFString.c to Analysis (the test case now works on all platforms). by Ted Kremenek · 16 years ago
  100. 8146f5b Move CFDateGC.m test case from Analysis-Apple to Analysis (it now runs on all platforms). by Ted Kremenek · 16 years ago