1. cf8b77d For non-floating point types, added check for expressions of the form by Ted Kremenek · 17 years ago
  2. dbb14ce For floating point equality check, we now ignore parentheses. e.g.: by Ted Kremenek · 17 years ago
  3. 7543914 For checking for floating point comparison using == or !=, we now suppress by Ted Kremenek · 17 years ago
  4. a703c2e when checking for type equality, ignore typedefs. by Chris Lattner · 17 years ago
  5. db52673 casting to void is ok for structs (C99 6.5.4p2), this fixes by Chris Lattner · 17 years ago
  6. 8a40a83 Implement *skeletal* support for representing GNU inline asm stmts in the AST, by Chris Lattner · 17 years ago
  7. 3774dd9 by Steve Naroff · 17 years ago
  8. 09d26e5 This patch allows synthesis generation of ivar offset for legacy objective-c @implementation by Fariborz Jahanian · 17 years ago
  9. f185aef Patch to synthesize computation of Ivar offset in rewritten c file. by Fariborz Jahanian · 17 years ago
  10. f31a2fb Fix a crash on test/Sema/invalid-decl.c by Chris Lattner · 17 years ago
  11. 96f136d by Steve Naroff · 17 years ago
  12. 20b40e4 Check for Nullness of value built in GetObjcProtoType. by Fariborz Jahanian · 17 years ago
  13. bc8c52e by Steve Naroff · 17 years ago
  14. 45d52f7 Patch to rewrite ivar tables metadata for classes defined. by Fariborz Jahanian · 17 years ago
  15. 7438fdf by Steve Naroff · 17 years ago
  16. 144667e by Steve Naroff · 17 years ago
  17. 6931830 UsualArithmeticConversions is crashing with an assert by Chris Lattner · 17 years ago
  18. 2edd56e by Steve Naroff · 17 years ago
  19. b391e6e Implementation of AST for @protocol expression. by Fariborz Jahanian · 17 years ago
  20. 855d78d Generate code for static variables that don't have initializers. Also, report an error if a static initializer is not constant. by Anders Carlsson · 17 years ago
  21. 957448a Fix location processing of @selector: the range should include the @ sign. by Fariborz Jahanian · 17 years ago
  22. 5266418 by Steve Naroff · 17 years ago
  23. cfd61c8 Fix location processing of @encode: the range should include the @ sign. by Chris Lattner · 17 years ago
  24. 6fe8b27 Add a new Rewriter::getRangeSize method. by Chris Lattner · 17 years ago
  25. 080f3d0 Patch to diagnose duplicate method implementations. by Fariborz Jahanian · 17 years ago
  26. 171f5b1 by Steve Naroff · 17 years ago
  27. f807c20 Patch to implement AST generation for objective-c's @selector expression. by Fariborz Jahanian · 17 years ago
  28. 7e46145 by Steve Naroff · 17 years ago
  29. 5f505bf initialization of references should not do default fn/array promotions. by Chris Lattner · 17 years ago
  30. 134c350 by Steve Naroff · 17 years ago
  31. f2e3031 by Steve Naroff · 17 years ago
  32. 85f0dc5 by Steve Naroff · 17 years ago
  33. 3676033 Add code generation and sema checking for __builtin_va_arg. by Anders Carlsson · 17 years ago
  34. d4e36e4 Several name lookup conflict detection fixes involving objective-c names. by Fariborz Jahanian · 17 years ago
  35. 9d12c90 by Steve Naroff · 17 years ago
  36. 55bfe0d Add support for Pascal strings. by Anders Carlsson · 17 years ago
  37. 705380b by Steve Naroff · 17 years ago
  38. f66d84a by Steve Naroff · 17 years ago
  39. 8255b04 by Steve Naroff · 17 years ago
  40. cebb8d6 Generate code for va_start and va_end. by Anders Carlsson · 17 years ago
  41. d376f08 Patch to check for duplicate method decls in protocols. by Fariborz Jahanian · 17 years ago
  42. 550e050 Check and diagnose that objective-c objects may not be statically allocated. by Fariborz Jahanian · 17 years ago
  43. 035d879 Added notion of '*' specified format width/specifiers when checking by Ted Kremenek · 17 years ago
  44. 8eaeff5 Fixed typo in comment. by Fariborz Jahanian · 17 years ago
  45. dc36dc1 Fixed a @compatible_alias bug. In the process, discovered unnecessary 2ndry lookup by Fariborz Jahanian · 17 years ago
  46. a4da5f6 by Steve Naroff · 17 years ago
  47. e267480 Add some more diagnostics for va_start, fix tests so they pass with these new diags. by Anders Carlsson · 17 years ago
  48. 23f968b Fixed a bug whereby, struct tag name matches a typedef/objc-class name by Fariborz Jahanian · 17 years ago
  49. 42166a8 Printf argument checking now supports dynamically-passed precision specifiers. by Ted Kremenek · 17 years ago
  50. 05d212a This patch implementa objective-c's @compatibilty-alias declaration. by Fariborz Jahanian · 17 years ago
  51. fb5b1e8 Add __builtin_va_start to the list of builtins, make __builtin_va_list available to builtin functions. by Anders Carlsson · 17 years ago
  52. 91193f6 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  53. 71c0111 Fix 80 col violations. by Chris Lattner · 17 years ago
  54. 7aeeda0 Refinements to Sema::GetObjcIdType()... by Steve Naroff · 17 years ago
  55. ee1de13 by Steve Naroff · 17 years ago
  56. 663733e Emit a warning when the body of an if block is a NullStmt. by Anders Carlsson · 17 years ago
  57. 415c183 by Steve Naroff · 17 years ago
  58. d1f21e1 Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  59. 9637a9b by Steve Naroff · 17 years ago
  60. c53cc70 Minor code clean up to make it more readable. by Fariborz Jahanian · 17 years ago
  61. 042e6e8 Update DeclKind enums to reflect ObjcProtocolDecl's inheritance change. by Chris Lattner · 17 years ago
  62. ac142de Remove addition of protocol names to declaration scopes, use a separate by Fariborz Jahanian · 17 years ago
  63. ea14870 rename some "Parse" actions to "ActOn". Move code around in by Chris Lattner · 17 years ago
  64. b3240c7 Prevent memory leak by not creating a category object when there is a by Fariborz Jahanian · 17 years ago
  65. 7711ee3 by Steve Naroff · 17 years ago
  66. 1c4c35e Return NULL on invalid protocol. by Fariborz Jahanian · 17 years ago
  67. 2fd1c65 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  68. 680f705 The identifier shouldn't be added to the scope, the decl should. by Chris Lattner · 17 years ago
  69. 64610dd simplify some Selector interfaces. by Chris Lattner · 17 years ago
  70. a7a191c move ImplementationClassInfo out of ASTContext into Sema. by Chris Lattner · 17 years ago
  71. 79b0084 switch ObjcCategoryImplDecl over to being a NamedDecl, remove dead ctor argument. by Chris Lattner · 17 years ago
  72. 910435b introduce a new NamedDecl class, switch a couple of things over to using it. by Chris Lattner · 17 years ago
  73. 2443d91 simplify the interface to create ObjcClassDecl's. by Chris Lattner · 17 years ago
  74. 6b1ed8d simplify the interface for creating ObjcForwardProtocolDecl by Chris Lattner · 17 years ago
  75. a096e1d This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  76. 48ed6f8 Implement DenseMapInfo for Selector, allowing use of DenseMap/DenseSet of by Chris Lattner · 17 years ago
  77. 67907bd Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  78. 37c9c61 this patch accomodates clattner's comments on expression processing in @try-statement. by Fariborz Jahanian · 17 years ago
  79. cbc36d4 Fixed tabs in couple of sources. by Fariborz Jahanian · 17 years ago
  80. fa601d5 Fixed all my recent test cases to have the RUN command and by Fariborz Jahanian · 17 years ago
  81. 25aace8 by Steve Naroff · 17 years ago
  82. 78adb39 Renamed getCatLoc() to getLocation() to be consistant for such getter names. by Fariborz Jahanian · 17 years ago
  83. b4dfe36 by Steve Naroff · 17 years ago
  84. 1c095a7 Unified such names as protocol references, instance methods and class methods by Fariborz Jahanian · 17 years ago
  85. 89529b1 by Steve Naroff · 17 years ago
  86. f4bc79a by Steve Naroff · 17 years ago
  87. d3952f3 Previously, I warned those methods not implemented in implementation class/category. by Fariborz Jahanian · 17 years ago
  88. fa465d1 by Steve Naroff · 17 years ago
  89. 9745645 ObjcCategoryDecl Does not subclass from ScopedDecl any more. by Fariborz Jahanian · 17 years ago
  90. a91aa32 This patch introduces the ObjcCategoryImplDecl class and does the checking related to by Fariborz Jahanian · 17 years ago
  91. 3fafa10 by Steve Naroff · 17 years ago
  92. bec0d56 Took care of clatter's suggestions, dated. by Fariborz Jahanian · 17 years ago
  93. 3c9e4da Fix a bug I just introduced. by Chris Lattner · 17 years ago
  94. 25b8285 simplify an expression by Chris Lattner · 17 years ago
  95. a00e074 This patch fixes all issues mentioned in clattner's feedback of by Fariborz Jahanian · 17 years ago
  96. f7cf3a6 Code clean up. Moved couple of static functions to be private members of Sema class. by Fariborz Jahanian · 17 years ago
  97. dd243ef Patch to remove use of has table for protocol name lookup. This patch mirrors my by Fariborz Jahanian · 17 years ago
  98. 0c5affb Removed use of hash table for class decls and do a name look up directly. by Fariborz Jahanian · 17 years ago
  99. 6cb1d36 by Steve Naroff · 17 years ago
  100. 5975f77 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 17 years ago