1. 94a5c33 by Steve Naroff · 17 years ago
  2. 68cfd49 reenable this code, fix the testcase. by Chris Lattner · 17 years ago
  3. 852e311 disable my commit from yesterday, fixing a regression test failure. by Chris Lattner · 17 years ago
  4. 411f373 This patch concludes implementation of dynamic objective-c type qualified by by Fariborz Jahanian · 17 years ago
  5. abf5ad0 Fix the embarassing typo for real this time (- vs _), sorry about breaking the tests Steve. by Anders Carlsson · 17 years ago
  6. 0592cbe by Steve Naroff · 17 years ago
  7. 78aaae9 Fix an embarassing typo and add some very limited support for the aligned attribute. by Anders Carlsson · 17 years ago
  8. 6ede0ff Normalize attribute names if possible so we won't have to do two strcmps for every attribute. by Anders Carlsson · 17 years ago
  9. 54b263b fix broken assert. by Chris Lattner · 17 years ago
  10. cd88129 Implement C99 6.7.5.3p1 by Chris Lattner · 17 years ago
  11. d58fabf Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
  12. 6e99978 Fix const propagation bug. by Chris Lattner · 17 years ago
  13. 1ca9b11 by Steve Naroff · 17 years ago
  14. b99a4a3 by Steve Naroff · 17 years ago
  15. a56f616 by Steve Naroff · 17 years ago
  16. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  17. 4a33646 Modified format-string checking to not emit a warning when all of the by Ted Kremenek · 17 years ago
  18. 9796915 Format string checker: asprintf does not pass argumnents via va_list. by Ted Kremenek · 17 years ago
  19. 3cc4af8 by Steve Naroff · 17 years ago
  20. 58dbdeb by Steve Naroff · 17 years ago
  21. 06cef25 Patch to make ObjcQualifiedInterfaceType inherit ObjcInterfaceType by Fariborz Jahanian · 17 years ago
  22. 4d83220 by Steve Naroff · 17 years ago
  23. 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
  24. 79a99f2 Concatenation of objc strings. by Fariborz Jahanian · 17 years ago
  25. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  26. 0e39105 make it a bit more clear in what way the ivar is consistent. by Chris Lattner · 17 years ago
  27. 609e4c7 simplify some code, bump j. This fixes the remaining test failures. by Chris Lattner · 17 years ago
  28. 4c52509 unbreak the build. I'm still working on test failures. by Chris Lattner · 17 years ago
  29. 4d39148 split objc pieces of SemaDecl.cpp out into SemaDeclObjC.cpp by Chris Lattner · 17 years ago
  30. ca5eede implement correct semantic analysis for shifts. For: by Chris Lattner · 17 years ago
  31. b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
  32. 33b7b06 simplify code now that isConstantExpr really does always return a loc. by Chris Lattner · 17 years ago
  33. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  34. 0105556 For @optional unimplemented methods do not issue the warning. by Fariborz Jahanian · 17 years ago
  35. 9a4ad37 by Steve Naroff · 17 years ago
  36. afedd22 by Steve Naroff · 17 years ago
  37. 32150f3 by Steve Naroff · 17 years ago
  38. 2fdc374 by Steve Naroff · 17 years ago
  39. 6e4ab61 Implement correct semantic analysis of subtractions, implementing C99 6.5.6. by Chris Lattner · 17 years ago
  40. 7dd8283 Implemented when static typing is combined with protocols and use as receiver by Fariborz Jahanian · 17 years ago
  41. 32c3904 by Steve Naroff · 17 years ago
  42. 9feba02 by Steve Naroff · 17 years ago
  43. 9bcb5fc by Steve Naroff · 17 years ago
  44. 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago
  45. b2f08e0 Add workaround to get test/Parser/compound_literal.c working again. by Anders Carlsson · 17 years ago
  46. d0ee6f9 On Steve's suggestion, moved handling of use of undeclared method in a message by Fariborz Jahanian · 17 years ago
  47. c002726 A missing method in a messaging expression issues a warning, clients must not by Fariborz Jahanian · 17 years ago
  48. 5ef404f Patch to prevent crash on use of objc2 syntax. by Fariborz Jahanian · 17 years ago
  49. d35c832 Add sema checking for compound literal expressions. by Anders Carlsson · 17 years ago
  50. 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
  51. e638639 by Steve Naroff · 17 years ago
  52. b107ce8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
  53. 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
  54. 8b1be77 restore these lines, which fixes some regtest failures. by Chris Lattner · 17 years ago
  55. 2efcd2f improve VC++ compatibility, patch by Cédric Venet. by Chris Lattner · 17 years ago
  56. 6c19a04 Initialize CurMethodDecl to 0. by Anders Carlsson · 17 years ago
  57. 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
  58. 695dbb6 Support lax vector conversions. by Anders Carlsson · 17 years ago
  59. 89307ff by Steve Naroff · 17 years ago
  60. 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
  61. 1b500bb Enhanced implementation of -Wfloat-equal to check for comparisons against by Ted Kremenek · 17 years ago
  62. 720c4ec Added "isExact" field to FloatingLiteral. This flag indicates whether or not by Ted Kremenek · 17 years ago
  63. 1f64432 by Steve Naroff · 17 years ago
  64. b751c28 Fix a bug checking for 'int foo(void)' that didn't look through typedefs of void. by Chris Lattner · 17 years ago
  65. f471f2e Set loc earlier in CheckSingleInitializer to avoid emitting a by Chris Lattner · 17 years ago
  66. 529a4ad by Steve Naroff · 17 years ago
  67. 7ee261c handle __vector_size__ like vector_size by Chris Lattner · 17 years ago
  68. 584b247 Add comment to CheckVectorCast.h by Anders Carlsson · 17 years ago
  69. a64db8f Report errors for invalid casts from/to vectors. by Anders Carlsson · 17 years ago
  70. d04c6e2 Add more semantic analysis for inline asm statements. by Anders Carlsson · 17 years ago
  71. a21ddb3 Fix sema support for the gnu ?: expression with a by Chris Lattner · 17 years ago
  72. 588e5eb Moved logic for -Wfloat-equal to SemaChecking.cpp. by Ted Kremenek · 17 years ago
  73. 6fa9086 Check that the clobber registers are valid. by Anders Carlsson · 17 years ago
  74. 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
  75. 04728b7 Check asm input and output expressions. by Anders Carlsson · 17 years ago
  76. 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
  77. 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
  78. 5519644 Improve function decl merging, patch by Oliver Hunt! by Chris Lattner · 17 years ago
  79. 9219928 by Steve Naroff · 17 years ago
  80. 91578f3 by Steve Naroff · 17 years ago
  81. f82228f Tighten up address-of checking, implementing test/Sema/expr-address-of.c. by Chris Lattner · 17 years ago
  82. 49f109c by Steve Naroff · 17 years ago
  83. 335eafa by Steve Naroff · 17 years ago
  84. 7e3411b by Steve Naroff · 17 years ago
  85. ddd600f by Steve Naroff · 17 years ago
  86. 41af093 implement test/Sema/typedef-prototype.c, allowing code by Chris Lattner · 17 years ago
  87. 1b4e251 Give AST-walk passes a way to access DeclSpec attributes on functions and by Nate Begeman · 17 years ago
  88. bff5f5c Rename Sema method to follow class naming convention by Nate Begeman · 17 years ago
  89. c8f488d Modified -Wfloat-equal logic to suppress warnings where floating point values by Ted Kremenek · 17 years ago
  90. 0da493e Updated diagnostic for -Wfloat-equal to underline the offending expressions. by Ted Kremenek · 17 years ago
  91. 66296cb by Steve Naroff · 17 years ago
  92. 817da7c by Steve Naroff · 17 years ago
  93. b245a33 Patch to set context (interface, category, etc.) in which method is declared. by Fariborz Jahanian · 17 years ago
  94. 8eabdff by Steve Naroff · 17 years ago
  95. 232220c Patch to do statically typed ivar references. by Fariborz Jahanian · 17 years ago
  96. e1e6c0d by Steve Naroff · 17 years ago
  97. cffff84 Minor twik for when there is no super class and 'super' is errornously used. by Fariborz Jahanian · 17 years ago
  98. 0523aaf 'super' nailed. by Fariborz Jahanian · 17 years ago
  99. bd278bc by Steve Naroff · 17 years ago
  100. 7779db4 by Steve Naroff · 17 years ago