1. 85bd81e Type::isIntegerType() returns true for types between Bool and LongLong. by Argiris Kirtzidis · 16 years ago
  2. 541f6bb Move the C++ Sema tests into a separate SemaCXX directory. by Argiris Kirtzidis · 16 years ago
  3. 4963ee4 C++ casts, (static_cast. dynamic_cast, etc.) can have postfix-expression pieces. by Argiris Kirtzidis · 16 years ago
  4. f3d8263 Enhance null-dereference checker test. by Ted Kremenek · 16 years ago
  5. 917ed41 make sure the size of constant arrays is respected by Nuno Lopes · 16 years ago
  6. 31fe9c3 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
  7. 41508c1 Added test case. by Ted Kremenek · 16 years ago
  8. e9bcc5c Add test case for -fexceptions by Daniel Dunbar · 16 years ago
  9. ff5b3a8 InitListChecker::CheckListElementTypes(): Check for function types and issue an appropriate diagnostic. by Steve Naroff · 16 years ago
  10. 4b6bd3c Sema::CheckForFileScopedRedefinitions(): Make sure tentative decls of incomplete array types are completed (and diagnosed properly). by Steve Naroff · 16 years ago
  11. 8324cb6 Fix crash during initialization of a bitfield which followed a zero by Daniel Dunbar · 16 years ago
  12. 1543ae9 wrap some long diagnostics, make 'initializer is not a constant' diagnostic by Chris Lattner · 16 years ago
  13. 171a463 Make sure to count the struct elements correctly; here, we want the by Eli Friedman · 16 years ago
  14. dd2b9af Fix for PR2631; make va_arg work correctly on x86-64. by Eli Friedman · 16 years ago
  15. fd79969 Fix PR2400 by more graceful handling of invalid decls. Don't try to layout by Chris Lattner · 16 years ago
  16. 1ed03e7 Implement support for the 'wchar_t' C++ type. by Argiris Kirtzidis · 16 years ago
  17. 1250817 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
  18. b5e7815 Fix issues with C "tentative" definitions. by Steve Naroff · 16 years ago
  19. 7f0def4 Add test for nested enum redefinition. - <rdar://problem/6093889> by Daniel Dunbar · 16 years ago
  20. 8458a31 Enhanced test case. by Ted Kremenek · 16 years ago
  21. c913fcb Replace old bitfield test. by Daniel Dunbar · 16 years ago
  22. de81331 Fix EmitNullInitializationToLValue for bitfield lvalues. - PR2643 by Daniel Dunbar · 16 years ago
  23. 833b03b Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
  24. 5d7d038 Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
  25. ced8914 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 16 years ago
  26. a31eaf7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 16 years ago
  27. d0e162c fix crash when printing diagnostics with tokens that span through more than one line by Nuno Lopes · 16 years ago
  28. 7b0f814 Add test case for PR2001. by Daniel Dunbar · 16 years ago
  29. 40ca814 Fix const-init test case by Daniel Dunbar · 16 years ago
  30. f9311a9 Fix rdar://6124613 a crash on invalid code. by Chris Lattner · 16 years ago
  31. 0aac9f6 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
  32. 103baef Add EXTWARN Diagnostic class. by Daniel Dunbar · 16 years ago
  33. b45f75c Fix several issues in checking of address-of expressions. by Daniel Dunbar · 16 years ago
  34. 879788d Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
  35. a1923f6 by Chris Lattner · 16 years ago
  36. dd2e9ca Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 16 years ago
  37. 8716a01 Support __attribute__(({con,de}structor)) in Parse & Sema by Daniel Dunbar · 16 years ago
  38. 0303bab 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
  39. 69cc2f9 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  40. 5c8963d Fix implicit initialization of structures. by Daniel Dunbar · 16 years ago
  41. 2188c53 Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 16 years ago
  42. f7bacd3 Fix codegen of chained declarations by Daniel Dunbar · 16 years ago
  43. eea6a1c Remove bashism; sh != bash on Ubuntu. by Eli Friedman · 16 years ago
  44. 200964f fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
  45. 987a87b testcase for PR2416, which we already handle correctly. by Chris Lattner · 16 years ago
  46. 17d50a9 simplify some code. by Chris Lattner · 16 years ago
  47. fc513a6 remove duplicate error message. by Chris Lattner · 16 years ago
  48. 5ad2497 remove objc prefixes from these tests. by Chris Lattner · 16 years ago
  49. 1c2732e move all objc sema tests into a new SemaObjC directory. Next step is to by Chris Lattner · 16 years ago
  50. 4a68fe0 fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
  51. b99d749 improve handling of the horrible GCC objc extension that treats "<foo>" by Chris Lattner · 16 years ago
  52. bd69502 GCC supports the complex conjugate operator (an extension) on complex int by Chris Lattner · 16 years ago
  53. 6ff24a4 fix diagnostics. by Chris Lattner · 16 years ago
  54. dad8551 Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
  55. e02e440 Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 16 years ago
  56. 2aa6882 c89 does not perform array -> pointer promotion unless the array is an lvalue. This by Chris Lattner · 16 years ago
  57. c59df05 Fix long double test case by Daniel Dunbar · 16 years ago
  58. 03c430f In c99 mode, comma does do function/array promotion even though by Chris Lattner · 16 years ago
  59. 7d2217d Remove '.' in expected warning by Ted Kremenek · 16 years ago
  60. 4405b2e Comma does not perform unary promotions, rdar://6095180 by Chris Lattner · 16 years ago
  61. cae9a78 gcc requires a semicolon at the end of an interface, unlike its extension for structs. by Chris Lattner · 16 years ago
  62. 2c7e0e5 Cleaunup Sema::ActOnClassMessage(). This commit: by Steve Naroff · 16 years ago
  63. bef8d62 Reject typedef redefinitions when the underlying types are not identical, by Chris Lattner · 16 years ago
  64. 65691aa update this testcase. by Chris Lattner · 16 years ago
  65. b1cf9e8 Add test case for hex floating point constants in < C99 mode by Daniel Dunbar · 16 years ago
  66. 1b843a2 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 16 years ago
  67. 542adb1 Don't emit 'dead initialization' warnings for variables marked 'unused'. by Ted Kremenek · 16 years ago
  68. 7a7458c Rework codegen of case ranges by Daniel Dunbar · 16 years ago
  69. d4fecce Allow CLANG env variable to override "clang" command in TestRunner.sh by Daniel Dunbar · 16 years ago
  70. 65259c9 Correctly handle NSAssertionHandle -handleFailureInMethod:object:file:lineNumber:description: by Ted Kremenek · 16 years ago
  71. ccbc3ca Don't issue a missing +dealloc warning for classes that just contain SEL ivars. by Ted Kremenek · 16 years ago
  72. ab8b7cb Rename test case file. by Ted Kremenek · 16 years ago
  73. d1a6c67 Issue dead store warnings for preincrements involved in a subexpression. by Ted Kremenek · 16 years ago
  74. bc60678 Added dead stores test case. by Ted Kremenek · 16 years ago
  75. 8d48164 Further refine dead store checking to distinguish between dead stores and dead increments. by Ted Kremenek · 16 years ago
  76. 083541a Properly skip IBOutlets when checking for unused ivars. by Ted Kremenek · 16 years ago
  77. 8441802 Fix rdar://6094010 various asserts happening with wide strings in inline asm. by Chris Lattner · 16 years ago
  78. 3b8f5c6 Fix a codegen crash on: by Chris Lattner · 16 years ago
  79. bbafa5b Added path-sensitive checking for null pointer values passed to function arguments marked nonnull. by Ted Kremenek · 16 years ago
  80. 3384433 Implement bzero, memset, memmove builtins. by Daniel Dunbar · 16 years ago
  81. 5b0de85 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 16 years ago
  82. 178cee2 Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 16 years ago
  83. 29921c4 Add __builtin_powi[fl] support by Daniel Dunbar · 16 years ago
  84. 63f583b Fix a test RUN line to not generate '=-' in test directory by Daniel Dunbar · 16 years ago
  85. 726f4d4 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 16 years ago
  86. 5cece46 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
  87. 55a2433 when in the context of an @implementation, look for private methods in the by Chris Lattner · 16 years ago
  88. f914765 continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 16 years ago
  89. fffdb25 fix test by Nuno Lopes · 16 years ago
  90. e80517b Patch by Kovarththanan Rajaratnam: by Ted Kremenek · 16 years ago
  91. 87ca664 Added test case. by Ted Kremenek · 16 years ago
  92. 5f027ef Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  93. 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
  94. 9d0ff35 RewriteObjC::RewriteObjCTryStmt():Don't synthesize a catch begin if there are 0 catch clauses. by Steve Naroff · 16 years ago
  95. 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
  96. 7aa0f4e For the MissingDealloc check, don't treat IBOutlet ivars as being needed to be released by Ted Kremenek · 16 years ago
  97. 6360004 Distinguish between dead stores and dead initializations. by Ted Kremenek · 16 years ago
  98. 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
  99. c5f0f65 http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 16 years ago
  100. d072b89 Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago