1. 22128c6 Ignore -MT and -MF. by Ted Kremenek · 16 years ago
  2. 4cb1460 "This patch adds paths for Fedora 9 in clang.cpp and support for two preprocessor options in ccc." by Ted Kremenek · 16 years ago
  3. 5c9ee14 Fix EmitCaseStmtRange to ignore empty ranges by Daniel Dunbar · 16 years ago
  4. 198acff Add Expr::getIntegerConstantExprValue helper method by Daniel Dunbar · 16 years ago
  5. 4d1578d Updated checker build. by Ted Kremenek · 16 years ago
  6. bc60678 Added dead stores test case. by Ted Kremenek · 16 years ago
  7. 46ca64b Modified HTMLDiagnostics to also perform syntax highlighting for errors in header files. by Ted Kremenek · 16 years ago
  8. 1574600 Don't flag dead stores when the result of a preincrement/predecrement is used in an enclosing expression. by Ted Kremenek · 16 years ago
  9. 97318dd Added UnaryOperator::isPrefix(). by Ted Kremenek · 16 years ago
  10. a15448c Use typedef range_iterator instead of SourceRange* in PathDiagnosticPiece. by Ted Kremenek · 16 years ago
  11. 8d48164 Further refine dead store checking to distinguish between dead stores and dead increments. by Ted Kremenek · 16 years ago
  12. 083541a Properly skip IBOutlets when checking for unused ivars. by Ted Kremenek · 16 years ago
  13. 13df7e9 Initialize instance variable DeclAccess in ctor for ObjCIvarDecl. by Ted Kremenek · 16 years ago
  14. 173dd31 When constructing an ObjCIvarDecl object in Sema, provide its visibility up front instead of setting it afterwards. by Ted Kremenek · 16 years ago
  15. 6bddd51 Updated comment for class ObjCIvarDecl: it turns out the default access control by Ted Kremenek · 16 years ago
  16. 4b8805a Ivar access mode ObjCIvarDecl::None == ObjCIvarDecl::Protected, not private. by Ted Kremenek · 16 years ago
  17. 314562e Update Xcode project. by Ted Kremenek · 16 years ago
  18. c7ec531 don't depend on the result of CreateNeg to be a binop by Chris Lattner · 16 years ago
  19. 8441802 Fix rdar://6094010 various asserts happening with wide strings in inline asm. by Chris Lattner · 16 years ago
  20. 3b8f5c6 Fix a codegen crash on: by Chris Lattner · 16 years ago
  21. 69ea785 Add prototype implementation of unused ivar check. by Ted Kremenek · 16 years ago
  22. 8a6b4e8 Updated checker build. by Ted Kremenek · 16 years ago
  23. 24d49d0 Fix compilation error on GCC 4.3.0 ('memcpy' was not declared in this scope). by Argiris Kirtzidis · 16 years ago
  24. 1c73aa2 Add note to check what __alignof__ a function type should be. by Daniel Dunbar · 16 years ago
  25. 82b2628 Always define __SIZE_TYPE__ as long unsigned int. by Anders Carlsson · 16 years ago
  26. 03b94cc Update VS project. by Ted Kremenek · 16 years ago
  27. 26151d1 Use llvm::utostr_32 instead of ostringstream. by Ted Kremenek · 16 years ago
  28. b71372a Update VS project. by Ted Kremenek · 16 years ago
  29. 7b97911 Update Xcode project. by Ted Kremenek · 16 years ago
  30. 9f20c7c Moved registration of basic path-sensitive checks from GRSimpleVals.cpp to GRExprEngineInternalChecks.cpp. by Ted Kremenek · 16 years ago
  31. e0d2bdc Rename file. by Ted Kremenek · 16 years ago
  32. fdb7acd Prevent codegen crash on sizeof(<function type>), a gcc extension. by Daniel Dunbar · 16 years ago
  33. fee1adb Add svn:ignore for cscope.{out,files} in top level clang dir by Daniel Dunbar · 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. e705e5e minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 16 years ago
  38. 178cee2 Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 16 years ago
  39. c0af254 Added sema support for the nonnull attribute. Will add test cases soon. by Ted Kremenek · 16 years ago
  40. fea941b Kill an unused variable warning by Daniel Dunbar · 16 years ago
  41. a19b5ec unindent this function by using an early exit, not functionality change. by Chris Lattner · 16 years ago
  42. 0be0882 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 16 years ago
  43. 5989d84 Add svn:ignore property for test Output directories by Daniel Dunbar · 16 years ago
  44. 29921c4 Add __builtin_powi[fl] support by Daniel Dunbar · 16 years ago
  45. 63f583b Fix a test RUN line to not generate '=-' in test directory by Daniel Dunbar · 16 years ago
  46. e22cf7c add forward definition protocols to the protocol list for a class. by Chris Lattner · 16 years ago
  47. 8779c63 references to completely undeclared protocols should be errors. by Chris Lattner · 16 years ago
  48. 5f238fe RewriteObjC::RewriteObjCForCollectionStmt() needs to handle bodies with a single statement. by Steve Naroff · 16 years ago
  49. 8bcb525 introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
  50. 18efaf3 Update checker build. by Ted Kremenek · 16 years ago
  51. c72eaaf rename setReferencedProtocolList -> addReferencedProtocols to by Chris Lattner · 16 years ago
  52. 726f4d4 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 16 years ago
  53. fc1ea13 Change 'MDecl' to 'MD' to fix redefinition compiler error in MSVC++. by Argiris Kirtzidis · 16 years ago
  54. 5100275 fix typo by Chris Lattner · 16 years ago
  55. 5cece46 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
  56. 55a2433 when in the context of an @implementation, look for private methods in the by Chris Lattner · 16 years ago
  57. 4d01854 don't pass in null as the Name for GenerateClassStructure, by Chris Lattner · 16 years ago
  58. 3977eb7 improve diagnostics about problems with receivers to highlight the receiver. by Chris Lattner · 16 years ago
  59. f914765 continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 16 years ago
  60. 4cff4b7 simplify control flow a bit, reducing indentation. No functionality change. by Chris Lattner · 16 years ago
  61. 50058c8 tighten up some checks, don't allow sending a message to NSString**** by Chris Lattner · 16 years ago
  62. 3780ac5 update diagnostic to include string by Chris Lattner · 16 years ago
  63. 7d5a876 improve invalid member reference diagnostics to print the type and by Chris Lattner · 16 years ago
  64. 00cb97b merge a bunch of code that is now common between qual interfaces and interfaces. by Chris Lattner · 16 years ago
  65. d5f8179 rename getProtocols -> getProtocol, as it only returns a single by Chris Lattner · 16 years ago
  66. a006ffc use iterators instead of direct access to protocol list. by Chris Lattner · 16 years ago
  67. f81d921 improve documentation of ObjCInterfaceType significantly. Also, by Chris Lattner · 16 years ago
  68. e9d7161 Fix a bunch of crashes that occur in (attempted) handling of objc properties. by Chris Lattner · 16 years ago
  69. eb3a8ad right, the error is when the itf *doesn't* have the member. by Chris Lattner · 16 years ago
  70. ed94f76 use the simplified form of lookupInstanceVariable for callers who by Chris Lattner · 16 years ago
  71. 52292be improve the diagnostic for an erroneous objc ivar reference from: by Chris Lattner · 16 years ago
  72. b2b9da7 simplify a bunch of code, no functionality change. by Chris Lattner · 16 years ago
  73. a57cf47 rearrange some code, no functionality change. by Chris Lattner · 16 years ago
  74. 5982918 improve comments yet again, now I know what this does :) by Chris Lattner · 16 years ago
  75. a66fc55 minor rename, also, reject pointer to qualified id. by Chris Lattner · 16 years ago
  76. 381081d Fix a crash that can happen when you have typedefs for pointers to by Chris Lattner · 16 years ago
  77. 2e966c4 improve comments. by Chris Lattner · 16 years ago
  78. 7888b6c simplify this predicate, only checking isObjCQualifiedIdType once. by Chris Lattner · 16 years ago
  79. b826154 Add a space, ted apparently has philosophical problems with spaces ;-) by Chris Lattner · 16 years ago
  80. fffdb25 fix test by Nuno Lopes · 16 years ago
  81. aeb298f Updated latest checker build. by Ted Kremenek · 16 years ago
  82. e80517b Patch by Kovarththanan Rajaratnam: by Ted Kremenek · 16 years ago
  83. 7988274 Patch by by Ted Kremenek · 16 years ago
  84. 2c67d1b Reimplement ccc-analyzer in a language I actually know, and implement some obvious optimizations when processing command line arguments. by Ted Kremenek · 16 years ago
  85. 7712478 Remove typo. by Ted Kremenek · 16 years ago
  86. d7892ff Quote invocation of clang in pipe to handle paths with spaces. by Ted Kremenek · 16 years ago
  87. 87ca664 Added test case. by Ted Kremenek · 16 years ago
  88. 810ea0f Update checker build. by Ted Kremenek · 16 years ago
  89. 1ebce74 "currentHandler" is a nullary selector by Ted Kremenek · 16 years ago
  90. 6fbecac Fix caching bug. by Ted Kremenek · 16 years ago
  91. f2717b0 Add panic support for NSAssertionHandler. by Ted Kremenek · 16 years ago
  92. 5f027ef Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  93. d277421 Add panic function. by Ted Kremenek · 16 years ago
  94. 43a281c Fix 80 col violation by Ted Kremenek · 16 years ago
  95. 99b4f43 Fix regression by explicitly checking if we are negating a SymIntConstantVal. by Ted Kremenek · 16 years ago
  96. 19c5407 Improve path-sensitivity when using the logical not operator. by Ted Kremenek · 16 years ago
  97. 589f881 Renamed deterministic EvalBinOp to DetermEvalBinOpNN. This name mangling is unfortunately needed because virtual methods with the same name can be hidden by subclasses. by Ted Kremenek · 16 years ago
  98. 9c4ce60 Created ValueStateSet class to manage the creation of multiple states by a method. by Ted Kremenek · 16 years ago
  99. 6984d55 Remove dead method. by Ted Kremenek · 16 years ago
  100. eae5613 Add support shufpd by Mon P Wang · 16 years ago