1. c8ba2bd Type encoding for structs. by Fariborz Jahanian · 17 years ago
  2. d256e06 Fixed a rewrite of metadata bug when category implementation has no matching interface. by Fariborz Jahanian · 17 years ago
  3. 4855356 Parse "sizeof(arr)[0]" as a sizeof of an expr if arr is an expression. by Chris Lattner · 17 years ago
  4. 4496825 Updated test case to flag about comparisons against constants. We may by Ted Kremenek · 17 years ago
  5. 0d054eb Modified -Wfloat-equal logic to suppress warnings where floating point values by Ted Kremenek · 17 years ago
  6. 24f59fb Added -Wfloat-equal option to the driver. This makes warnings about by Ted Kremenek · 17 years ago
  7. ba3ddb2 improve handling of address of global when checking for by Chris Lattner · 17 years ago
  8. 4af7249 Patch to do statically typed ivar references. by Fariborz Jahanian · 17 years ago
  9. b82c50f by Steve Naroff · 17 years ago
  10. ce82758 by Steve Naroff · 17 years ago
  11. b1c7ad9 by Steve Naroff · 17 years ago
  12. 83ddf82 pretty priting for method definitions. by Fariborz Jahanian · 17 years ago
  13. 1ddb6f5 by Steve Naroff · 17 years ago
  14. 8473b22 Added class context to method declarations. Provide "interface *" type by Fariborz Jahanian · 17 years ago
  15. ea86cb8 Insert invisble arguments to method definition header. by Fariborz Jahanian · 17 years ago
  16. 1470b07 improve decl merging logic to be more correct with by Chris Lattner · 17 years ago
  17. f9167d1 Add better validation for array types when merging decls. Patch by Chris Lattner · 17 years ago
  18. edf4e23 Generate code for member exprs. by Anders Carlsson · 17 years ago
  19. 65e7eb5 Remaining work to collect objective-c's type qualifiers and use them to encode by Fariborz Jahanian · 17 years ago
  20. 42e86b6 Implement test/Sema/init.c by treating functions as constants. by Chris Lattner · 17 years ago
  21. 9889c1a start adding pading fields. by Devang Patel · 17 years ago
  22. 44db38f Fix a typo that prevented pointer-to-int conversions from working. by Anders Carlsson · 17 years ago
  23. 0ae1541 Handle function calls that return aggregate expressions. by Anders Carlsson · 17 years ago
  24. 85efa66 New test to verify llvm struct layout. by Devang Patel · 17 years ago
  25. 8709373 Fixed problem with rewriting stand-alone @implementation (with no matching @interface). by Fariborz Jahanian · 17 years ago
  26. 5bf7202 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  27. b9b9361 Fixed tests. by Fariborz Jahanian · 17 years ago
  28. c0e96dd Revisited my last patch to be able to do encoding of ivar types with 'id'. by Fariborz Jahanian · 17 years ago
  29. 80faffa Added type encoding for 'id' type. by Fariborz Jahanian · 17 years ago
  30. 4926e10 Added to test case for "self-comparison check" uses of relation operators: x < x and x > x by Ted Kremenek · 17 years ago
  31. cf8b77d For non-floating point types, added check for expressions of the form by Ted Kremenek · 17 years ago
  32. 7543914 For checking for floating point comparison using == or !=, we now suppress by Ted Kremenek · 17 years ago
  33. 84b2071 improve error recovery handling broken 'then' or 'else' stmts in by Chris Lattner · 17 years ago
  34. db52673 casting to void is ok for structs (C99 6.5.4p2), this fixes by Chris Lattner · 17 years ago
  35. 9b1ca9e Codegen union member references. by Devang Patel · 17 years ago
  36. 2b24fd9 Handle non LValue base expressions. by Devang Patel · 17 years ago
  37. 2ecd901 by Devang Patel · 17 years ago
  38. ddde6d5 Codegen array initializers. by Devang Patel · 17 years ago
  39. 8b5f530 Codegen global array initializers. by Devang Patel · 17 years ago
  40. 0401180 Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
  41. 265937d Fix a recovery bug Fariborz and I noticed yesterday. We were producing: by Chris Lattner · 17 years ago
  42. 9dd3e2b Handle foo()->a = 42; by Devang Patel · 17 years ago
  43. 32c3983 Handle non-constant initializers. by Devang Patel · 17 years ago
  44. 50279e1 Fix typo. by Devang Patel · 17 years ago
  45. 317c716 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  46. 41b6625 Handle simple struct member expr. by Devang Patel · 17 years ago
  47. f31a2fb Fix a crash on test/Sema/invalid-decl.c by Chris Lattner · 17 years ago
  48. a44b4d9 by Steve Naroff · 17 years ago
  49. 144667e by Steve Naroff · 17 years ago
  50. 6931830 UsualArithmeticConversions is crashing with an assert by Chris Lattner · 17 years ago
  51. 2edd56e by Steve Naroff · 17 years ago
  52. d95878d remove typedef. by Chris Lattner · 17 years ago
  53. 179d91f by Steve Naroff · 17 years ago
  54. 6e1406c by Steve Naroff · 17 years ago
  55. b391e6e Implementation of AST for @protocol expression. by Fariborz Jahanian · 17 years ago
  56. 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
  57. 5266418 by Steve Naroff · 17 years ago
  58. 080f3d0 Patch to diagnose duplicate method implementations. by Fariborz Jahanian · 17 years ago
  59. f807c20 Patch to implement AST generation for objective-c's @selector expression. by Fariborz Jahanian · 17 years ago
  60. 7e46145 by Steve Naroff · 17 years ago
  61. 5f505bf initialization of references should not do default fn/array promotions. by Chris Lattner · 17 years ago
  62. 056c6b0 Patch to parse @selector expressions. by Fariborz Jahanian · 17 years ago
  63. d4e36e4 Several name lookup conflict detection fixes involving objective-c names. by Fariborz Jahanian · 17 years ago
  64. 124b967 Fix a warning by Anders Carlsson · 17 years ago
  65. d376f08 Patch to check for duplicate method decls in protocols. by Fariborz Jahanian · 17 years ago
  66. 550e050 Check and diagnose that objective-c objects may not be statically allocated. by Fariborz Jahanian · 17 years ago
  67. 035d879 Added notion of '*' specified format width/specifiers when checking by Ted Kremenek · 17 years ago
  68. dc36dc1 Fixed a @compatible_alias bug. In the process, discovered unnecessary 2ndry lookup by Fariborz Jahanian · 17 years ago
  69. a4da5f6 by Steve Naroff · 17 years ago
  70. e267480 Add some more diagnostics for va_start, fix tests so they pass with these new diags. by Anders Carlsson · 17 years ago
  71. 23f968b Fixed a bug whereby, struct tag name matches a typedef/objc-class name by Fariborz Jahanian · 17 years ago
  72. 9e1db88 Temporary fix to test case. This area is currently under construction...test case will be changing again soon. by Steve Naroff · 17 years ago
  73. 05d212a This patch implementa objective-c's @compatibilty-alias declaration. by Fariborz Jahanian · 17 years ago
  74. 84a34f5 Implemented parsing of objctive-c protocol conforming type used in by Fariborz Jahanian · 17 years ago
  75. 91193f6 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  76. 4045a8a rename -parse-ast-print to -ast-print by Chris Lattner · 17 years ago
  77. 7aeeda0 Refinements to Sema::GetObjcIdType()... by Steve Naroff · 17 years ago
  78. ee1de13 by Steve Naroff · 17 years ago
  79. 663733e Emit a warning when the body of an if block is a NullStmt. by Anders Carlsson · 17 years ago
  80. 9637a9b by Steve Naroff · 17 years ago
  81. 706f844 Recognize while(1) and avoid extra blocks. by Devang Patel · 17 years ago
  82. d90f134 new test by Devang Patel · 17 years ago
  83. 347ca32 Code gen case statement ranges. by Devang Patel · 17 years ago
  84. a096e1d This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  85. cf9dbf2 Support case statement ranges. by Devang Patel · 17 years ago
  86. 67907bd Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  87. e58e080 switch statement code gen. by Devang Patel · 17 years ago
  88. 37c9c61 this patch accomodates clattner's comments on expression processing in @try-statement. by Fariborz Jahanian · 17 years ago
  89. fa601d5 Fixed all my recent test cases to have the RUN command and by Fariborz Jahanian · 17 years ago
  90. d3952f3 Previously, I warned those methods not implemented in implementation class/category. by Fariborz Jahanian · 17 years ago
  91. a91aa32 This patch introduces the ObjcCategoryImplDecl class and does the checking related to by Fariborz Jahanian · 17 years ago
  92. 5975f77 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 17 years ago
  93. 1e4e82f Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 17 years ago
  94. 99f5f0b objc messages have side effects, return true from hasLocalSideEffect, fixing: by Chris Lattner · 17 years ago
  95. 56b7086 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
  96. d34caf9 This patch inserts ivars declared in @implementation in its object and verifies by Fariborz Jahanian · 17 years ago
  97. 1c0eedb Patch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy by Fariborz Jahanian · 17 years ago
  98. c091b5d This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  99. e6cdeb5 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
  100. ac77583 This patch adds to new things to clang: by Fariborz Jahanian · 17 years ago