1. 06cef25 Patch to make ObjcQualifiedInterfaceType inherit ObjcInterfaceType by Fariborz Jahanian · 17 years ago
  2. 4d83220 by Steve Naroff · 17 years ago
  3. 1dcf2c8 Don't do integer promotions of LHS for compound shift assignment. The LHS has to be a modifiable lvalue. by Chris Lattner · 17 years ago
  4. 79a99f2 Concatenation of objc strings. by Fariborz Jahanian · 17 years ago
  5. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  6. 0e39105 make it a bit more clear in what way the ivar is consistent. by Chris Lattner · 17 years ago
  7. 609e4c7 simplify some code, bump j. This fixes the remaining test failures. by Chris Lattner · 17 years ago
  8. 4c52509 unbreak the build. I'm still working on test failures. by Chris Lattner · 17 years ago
  9. 4d39148 split objc pieces of SemaDecl.cpp out into SemaDeclObjC.cpp by Chris Lattner · 17 years ago
  10. ca5eede implement correct semantic analysis for shifts. For: by Chris Lattner · 17 years ago
  11. b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
  12. 33b7b06 simplify code now that isConstantExpr really does always return a loc. by Chris Lattner · 17 years ago
  13. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  14. 0105556 For @optional unimplemented methods do not issue the warning. by Fariborz Jahanian · 17 years ago
  15. 9a4ad37 by Steve Naroff · 17 years ago
  16. afedd22 by Steve Naroff · 17 years ago
  17. 32150f3 by Steve Naroff · 17 years ago
  18. 2fdc374 by Steve Naroff · 17 years ago
  19. 6e4ab61 Implement correct semantic analysis of subtractions, implementing C99 6.5.6. by Chris Lattner · 17 years ago
  20. 7dd8283 Implemented when static typing is combined with protocols and use as receiver by Fariborz Jahanian · 17 years ago
  21. 32c3904 by Steve Naroff · 17 years ago
  22. 9feba02 by Steve Naroff · 17 years ago
  23. 9bcb5fc by Steve Naroff · 17 years ago
  24. 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago
  25. b2f08e0 Add workaround to get test/Parser/compound_literal.c working again. by Anders Carlsson · 17 years ago
  26. d0ee6f9 On Steve's suggestion, moved handling of use of undeclared method in a message by Fariborz Jahanian · 17 years ago
  27. c002726 A missing method in a messaging expression issues a warning, clients must not by Fariborz Jahanian · 17 years ago
  28. 5ef404f Patch to prevent crash on use of objc2 syntax. by Fariborz Jahanian · 17 years ago
  29. d35c832 Add sema checking for compound literal expressions. by Anders Carlsson · 17 years ago
  30. 677cda1 Revert DidWarn change - It won't catch all cases anyway and GCC warns for every excess element. Maybe later we can add back the limit and make it smarter. by Anders Carlsson · 17 years ago
  31. e638639 by Steve Naroff · 17 years ago
  32. b107ce8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
  33. f0049e6 Handle initializing vector elements correctly. Emit just one warning if there are excess initializers, instead of one per initializer. by Anders Carlsson · 17 years ago
  34. 8b1be77 restore these lines, which fixes some regtest failures. by Chris Lattner · 17 years ago
  35. 2efcd2f improve VC++ compatibility, patch by Cédric Venet. by Chris Lattner · 17 years ago
  36. 6c19a04 Initialize CurMethodDecl to 0. by Anders Carlsson · 17 years ago
  37. 3907323 GCC has an extension where the left hand side of the ? : operator can be omitted. Handle this in a few more places. by Anders Carlsson · 17 years ago
  38. 695dbb6 Support lax vector conversions. by Anders Carlsson · 17 years ago
  39. 89307ff by Steve Naroff · 17 years ago
  40. 48b1239 Update the initializer's type, in addition to the decl, if we've changed the type of the decl based on it. by Christopher Lamb · 17 years ago
  41. 1b500bb Enhanced implementation of -Wfloat-equal to check for comparisons against by Ted Kremenek · 17 years ago
  42. 720c4ec Added "isExact" field to FloatingLiteral. This flag indicates whether or not by Ted Kremenek · 17 years ago
  43. 1f64432 by Steve Naroff · 17 years ago
  44. b751c28 Fix a bug checking for 'int foo(void)' that didn't look through typedefs of void. by Chris Lattner · 17 years ago
  45. f471f2e Set loc earlier in CheckSingleInitializer to avoid emitting a by Chris Lattner · 17 years ago
  46. 529a4ad by Steve Naroff · 17 years ago
  47. 7ee261c handle __vector_size__ like vector_size by Chris Lattner · 17 years ago
  48. 584b247 Add comment to CheckVectorCast.h by Anders Carlsson · 17 years ago
  49. a64db8f Report errors for invalid casts from/to vectors. by Anders Carlsson · 17 years ago
  50. d04c6e2 Add more semantic analysis for inline asm statements. by Anders Carlsson · 17 years ago
  51. a21ddb3 Fix sema support for the gnu ?: expression with a by Chris Lattner · 17 years ago
  52. 588e5eb Moved logic for -Wfloat-equal to SemaChecking.cpp. by Ted Kremenek · 17 years ago
  53. 6fa9086 Check that the clobber registers are valid. by Anders Carlsson · 17 years ago
  54. 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
  55. 04728b7 Check asm input and output expressions. by Anders Carlsson · 17 years ago
  56. b235fc2 Store output and input operands as well as clobber information in the AsmStmt. Ted, could you please review the serialization/deserialization code? by Anders Carlsson · 17 years ago
  57. 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
  58. 5519644 Improve function decl merging, patch by Oliver Hunt! by Chris Lattner · 17 years ago
  59. 9219928 by Steve Naroff · 17 years ago
  60. 91578f3 by Steve Naroff · 17 years ago
  61. f82228f Tighten up address-of checking, implementing test/Sema/expr-address-of.c. by Chris Lattner · 17 years ago
  62. 49f109c by Steve Naroff · 17 years ago
  63. 335eafa by Steve Naroff · 17 years ago
  64. 7e3411b by Steve Naroff · 17 years ago
  65. ddd600f by Steve Naroff · 17 years ago
  66. 41af093 implement test/Sema/typedef-prototype.c, allowing code by Chris Lattner · 17 years ago
  67. 1b4e251 Give AST-walk passes a way to access DeclSpec attributes on functions and by Nate Begeman · 17 years ago
  68. bff5f5c Rename Sema method to follow class naming convention by Nate Begeman · 17 years ago
  69. c8f488d Modified -Wfloat-equal logic to suppress warnings where floating point values by Ted Kremenek · 17 years ago
  70. 0da493e Updated diagnostic for -Wfloat-equal to underline the offending expressions. by Ted Kremenek · 17 years ago
  71. 66296cb by Steve Naroff · 17 years ago
  72. 817da7c by Steve Naroff · 17 years ago
  73. b245a33 Patch to set context (interface, category, etc.) in which method is declared. by Fariborz Jahanian · 17 years ago
  74. 8eabdff by Steve Naroff · 17 years ago
  75. 232220c Patch to do statically typed ivar references. by Fariborz Jahanian · 17 years ago
  76. e1e6c0d by Steve Naroff · 17 years ago
  77. cffff84 Minor twik for when there is no super class and 'super' is errornously used. by Fariborz Jahanian · 17 years ago
  78. 0523aaf 'super' nailed. by Fariborz Jahanian · 17 years ago
  79. bd278bc by Steve Naroff · 17 years ago
  80. 7779db4 by Steve Naroff · 17 years ago
  81. 0330071 by Steve Naroff · 17 years ago
  82. 0755aba by Steve Naroff · 17 years ago
  83. eaf5f41 by Steve Naroff · 17 years ago
  84. 6649992 by Steve Naroff · 17 years ago
  85. d6d054d by Steve Naroff · 17 years ago
  86. 7c24915 by Steve Naroff · 17 years ago
  87. 0416fb9 by Steve Naroff · 17 years ago
  88. d848a38 by Steve Naroff · 17 years ago
  89. c43d868 by Steve Naroff · 17 years ago
  90. 8f2c735 Fixed a bug which exposed the internally built type to user code. by Fariborz Jahanian · 17 years ago
  91. f68a63f by Steve Naroff · 17 years ago
  92. 439d28c Minor code clean up in method def area. by Fariborz Jahanian · 17 years ago
  93. 60fbca0 Represent method definitions as separate AST nodes. Pretty print will come next. by Fariborz Jahanian · 17 years ago
  94. 360300c Some code clean up in the form of name changes for functions which by Fariborz Jahanian · 17 years ago
  95. 1f7b6f8 Added class context to method declarations. Provide "interface *" type by Fariborz Jahanian · 17 years ago
  96. 3560002 Insert invisble arguments to method definition header. by Fariborz Jahanian · 17 years ago
  97. 306d68f First patch toward rewriting of method definitions. This is work in progress. by Fariborz Jahanian · 17 years ago
  98. 39f8f15 AST for objective-c's @throw statement and its pretty-printing. by Fariborz Jahanian · 17 years ago
  99. 82a5fe3 Patch for objc2's property ASTs, as well as pretty-priting the ASTs. by Fariborz Jahanian · 17 years ago
  100. e3995fe improve decl merging logic to be more correct with by Chris Lattner · 17 years ago