1. 6135352 InitListChecker::CheckListElementTypes(): Check for function types and issue an appropriate diagnostic. by Steve Naroff · 16 years ago
  2. f855e6f Sema::CheckForFileScopedRedefinitions(): Make sure tentative decls of incomplete array types are completed (and diagnosed properly). by Steve Naroff · 16 years ago
  3. 9ca8bb0 Fix crash during initialization of a bitfield which followed a zero by Daniel Dunbar · 16 years ago
  4. d880363 wrap some long diagnostics, make 'initializer is not a constant' diagnostic by Chris Lattner · 16 years ago
  5. 1bb516c Make sure to count the struct elements correctly; here, we want the by Eli Friedman · 16 years ago
  6. c34bcde Fix for PR2631; make va_arg work correctly on x86-64. by Eli Friedman · 16 years ago
  7. 8389eab Fix PR2400 by more graceful handling of invalid decls. Don't try to layout by Chris Lattner · 16 years ago
  8. 64c438a Implement support for the 'wchar_t' C++ type. by Argyrios Kyrtzidis · 16 years ago
  9. 907747b Fix Sema::MergeVarDecl() to better handle type compatibility. The previous code was trying to handle arrays specially (which didn't work for pointers to array). Removed local helper function areEquivalentArrayTypes(), replacing it's use with the more general ASTContext::typesAreCompatible() predicate. by Steve Naroff · 16 years ago
  10. ff9eb1f Fix issues with C "tentative" definitions. by Steve Naroff · 16 years ago
  11. 45e52e1 Add test for nested enum redefinition. - <rdar://problem/6093889> by Daniel Dunbar · 16 years ago
  12. efe88f5 Enhanced test case. by Ted Kremenek · 16 years ago
  13. c4aa96f Replace old bitfield test. by Daniel Dunbar · 16 years ago
  14. 8239713 Fix EmitNullInitializationToLValue for bitfield lvalues. - PR2643 by Daniel Dunbar · 16 years ago
  15. 10e3ded Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
  16. 8c6f57c Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
  17. a735ad8 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 16 years ago
  18. 3c827a7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 16 years ago
  19. db82568 fix crash when printing diagnostics with tokens that span through more than one line by Nuno Lopes · 16 years ago
  20. 894bbab Add test case for PR2001. by Daniel Dunbar · 16 years ago
  21. da8bf14 Fix const-init test case by Daniel Dunbar · 16 years ago
  22. 4fef81d Fix rdar://6124613 a crash on invalid code. by Chris Lattner · 16 years ago
  23. 820b033 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
  24. 4489fe1 Add EXTWARN Diagnostic class. by Daniel Dunbar · 16 years ago
  25. 1e76ce6 Fix several issues in checking of address-of expressions. by Daniel Dunbar · 16 years ago
  26. 0ffb125 Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
  27. c63a1f2 by Chris Lattner · 16 years ago
  28. 6bfed7e Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 16 years ago
  29. 3068ae0 Support __attribute__(({con,de}structor)) in Parse & Sema by Daniel Dunbar · 16 years ago
  30. 22bda88 Enhanced path-sensitive return-of-stack-address check to print out the name of the variable whose address was returned. by Ted Kremenek · 16 years ago
  31. 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  32. f9eede1 Fix implicit initialization of structures. by Daniel Dunbar · 16 years ago
  33. 9986eab Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 16 years ago
  34. 58a7a26 Fix codegen of chained declarations by Daniel Dunbar · 16 years ago
  35. fde9fe7 Remove bashism; sh != bash on Ubuntu. by Eli Friedman · 16 years ago
  36. 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
  37. be89909 testcase for PR2416, which we already handle correctly. by Chris Lattner · 16 years ago
  38. eacc392 simplify some code. by Chris Lattner · 16 years ago
  39. e281c86 remove duplicate error message. by Chris Lattner · 16 years ago
  40. 666871a remove objc prefixes from these tests. by Chris Lattner · 16 years ago
  41. 6ac6ddc move all objc sema tests into a new SemaObjC directory. Next step is to by Chris Lattner · 16 years ago
  42. 62f5f7f fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
  43. bce6135 improve handling of the horrible GCC objc extension that treats "<foo>" by Chris Lattner · 16 years ago
  44. 02a6514 GCC supports the complex conjugate operator (an extension) on complex int by Chris Lattner · 16 years ago
  45. d67cd9e fix diagnostics. by Chris Lattner · 16 years ago
  46. 1e9660e Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
  47. 834a72a Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 16 years ago
  48. 67d33d8 c89 does not perform array -> pointer promotion unless the array is an lvalue. This by Chris Lattner · 16 years ago
  49. 0d834b1 Fix long double test case by Daniel Dunbar · 16 years ago
  50. 53fcaa9 In c99 mode, comma does do function/array promotion even though by Chris Lattner · 16 years ago
  51. f19f911 Remove '.' in expected warning by Ted Kremenek · 16 years ago
  52. 080b332 Comma does not perform unary promotions, rdar://6095180 by Chris Lattner · 16 years ago
  53. 3872b5c gcc requires a semicolon at the end of an interface, unlike its extension for structs. by Chris Lattner · 16 years ago
  54. 7c778f1 Cleaunup Sema::ActOnClassMessage(). This commit: by Steve Naroff · 16 years ago
  55. 99cb997 Reject typedef redefinitions when the underlying types are not identical, by Chris Lattner · 16 years ago
  56. 806c3b9 update this testcase. by Chris Lattner · 16 years ago
  57. 4f97e01 Add test case for hex floating point constants in < C99 mode by Daniel Dunbar · 16 years ago
  58. baf0d66 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 16 years ago
  59. fc7ff55 Don't emit 'dead initialization' warnings for variables marked 'unused'. by Ted Kremenek · 16 years ago
  60. 16f2357 Rework codegen of case ranges by Daniel Dunbar · 16 years ago
  61. 5e38073 Allow CLANG env variable to override "clang" command in TestRunner.sh by Daniel Dunbar · 16 years ago
  62. 17a61db Correctly handle NSAssertionHandle -handleFailureInMethod:object:file:lineNumber:description: by Ted Kremenek · 16 years ago
  63. f071e18 Don't issue a missing +dealloc warning for classes that just contain SEL ivars. by Ted Kremenek · 16 years ago
  64. 08e4b66 Rename test case file. by Ted Kremenek · 16 years ago
  65. b0f3632 Issue dead store warnings for preincrements involved in a subexpression. by Ted Kremenek · 16 years ago
  66. 8b00b6e Added dead stores test case. by Ted Kremenek · 16 years ago
  67. 2cfac22 Further refine dead store checking to distinguish between dead stores and dead increments. by Ted Kremenek · 16 years ago
  68. cc87ba2 Properly skip IBOutlets when checking for unused ivars. by Ted Kremenek · 16 years ago
  69. 6bc5211 Fix rdar://6094010 various asserts happening with wide strings in inline asm. by Chris Lattner · 16 years ago
  70. f31627f Fix a codegen crash on: by Chris Lattner · 16 years ago
  71. 584def7 Added path-sensitive checking for null pointer values passed to function arguments marked nonnull. by Ted Kremenek · 16 years ago
  72. 1caae95 Implement bzero, memset, memmove builtins. by Daniel Dunbar · 16 years ago
  73. 4493f79 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 16 years ago
  74. 465172f Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 16 years ago
  75. a933c3c Add __builtin_powi[fl] support by Daniel Dunbar · 16 years ago
  76. 4fbc2b0 Fix a test RUN line to not generate '=-' in test directory by Daniel Dunbar · 16 years ago
  77. 04b2900 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 16 years ago
  78. b752f28 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
  79. 6562fda when in the context of an @implementation, look for private methods in the by Chris Lattner · 16 years ago
  80. 2b1cc8b continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 16 years ago
  81. 9039a69 fix test by Nuno Lopes · 16 years ago
  82. 24af60f Patch by Kovarththanan Rajaratnam: by Ted Kremenek · 16 years ago
  83. c083b0d Added test case. by Ted Kremenek · 16 years ago
  84. c8aeb65 Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  85. 0ff12f0 When in C++, make EnumConstant names hide tag names in the same scope, instead of colliding with them. by Argyrios Kyrtzidis · 16 years ago
  86. c9ba172 RewriteObjC::RewriteObjCTryStmt():Don't synthesize a catch begin if there are 0 catch clauses. by Steve Naroff · 16 years ago
  87. b02ef24 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 Argyrios Kyrtzidis · 16 years ago
  88. f4ebf42 For the MissingDealloc check, don't treat IBOutlet ivars as being needed to be released by Ted Kremenek · 16 years ago
  89. f9c2a5d Distinguish between dead stores and dead initializations. by Ted Kremenek · 16 years ago
  90. f7f3c20 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
  91. be2341d http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 16 years ago
  92. 0d8019e Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  93. 66e855f Add test case. by Ted Kremenek · 16 years ago
  94. 9a979c3 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 16 years ago
  95. 560624a '&&' 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 Argyrios Kyrtzidis · 16 years ago
  96. 489f7b6 '&&' clang commands together so that the test status reflects the results of all three clang executions. by Ted Kremenek · 16 years ago
  97. 0364865 Fix a bug in the dead stores checker reported in the following email: by Ted Kremenek · 16 years ago
  98. aeca963 Skip the "-dealloc" check if a ObjC class contains no ivars. by Ted Kremenek · 16 years ago
  99. db09a4d 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
  100. e60cff1 new testcase by Chris Lattner · 16 years ago