1. 8d21721 Revert r66423, which was not the right fix for this issue. by Douglas Gregor · 16 years ago
  2. b964c1d Fix a little FIXME, thanks to Sebastian by Douglas Gregor · 16 years ago
  3. ceef30c Mark a non-type template parameter invalid if there was a problem with its type by Douglas Gregor · 16 years ago
  4. 86447ec Rename DiagnoseIncompleteType to RequireCompleteType, and update the documentation to reflect the fact that we can instantiate templates here by Douglas Gregor · 16 years ago
  5. 3e87209 do not warn about -=/=- confusion with macros, thanks to rdogra for a testcase. by Chris Lattner · 16 years ago
  6. 55660a7 implement PR3753, warning about comparisons with a string literal. by Chris Lattner · 16 years ago
  7. 64949d3 Remove dead clause (we decided not to support protocol qualified 'Class'). by Steve Naroff · 16 years ago
  8. 5609ec0 Improvements to private method lookup. by Steve Naroff · 16 years ago
  9. 399bd1b refine the "use of unary operator that may be intended as compound assignment (+=)" by Chris Lattner · 16 years ago
  10. 43af76e Some struct/class mismatch fixes, to silence MSVC warnings. by Sebastian Redl · 16 years ago
  11. 25a30d0 Don't discard increment/decrement on function pointers. It's kind of by Eli Friedman · 16 years ago
  12. d42ffbd Revert my last couple patches until I can get them to not make the tests fail. by Ted Kremenek · 16 years ago
  13. b9eb3af Teach Diagnostic about Selector. by Ted Kremenek · 16 years ago
  14. 150ec29 Selector: (changes made after discussing this more with Steve Naroff) by Ted Kremenek · 16 years ago
  15. e4f3e06 Downgrade complaints about the use of variable-sized types within a by Douglas Gregor · 16 years ago
  16. a71c129 Use the 'declaration does not declare anything' error when we see an anonymous struct/union declaration outside of a struct or union in C by Douglas Gregor · 16 years ago
  17. c837656 Implement GNU C semantics for K&R function definitions that follow a by Douglas Gregor · 16 years ago
  18. 79cd116 Handle #pragma pack(0). I left this out of diagnostic because users should by Daniel Dunbar · 16 years ago
  19. 9fa14a5 Improve recovery from ill-formed scope specifiers. Fixes PR3670. by Douglas Gregor · 16 years ago
  20. 80711a2 Implement the GNU semantics for forward declarations of enum types in by Douglas Gregor · 16 years ago
  21. 6e775db Add Parse/Sema support for weak_import attribute. by Daniel Dunbar · 16 years ago
  22. e6ee6ba add source range for type of super cast, giving something like: by Chris Lattner · 16 years ago
  23. 6f8ce14 more minor simplifications. by Chris Lattner · 16 years ago
  24. 8b963ef refactor C++ bitfield checking a bit (haha) by Chris Lattner · 16 years ago
  25. 2479366 fix PR3607 and a fixme, by checking bitfield constraints more consistently. by Chris Lattner · 16 years ago
  26. dd53eb5 Partial fix <rdar://problem/6301205> [irgen] dot-syntax on super isn't supported. by Steve Naroff · 16 years ago
  27. fbffca6 Tweak diag for <rdar://problem/5982579> [clang on xcode] (using arch=x86_64): synthesized property 'sdkPath' must either be named the same as a compatible ivar or must explicitly name an ivar. by Steve Naroff · 16 years ago
  28. 61d6852 Fix <rdar://problem/6144382> [sema] gcc inconsistency w.r.t. forward protocol declarations. by Steve Naroff · 16 years ago
  29. 21ff9c9 When parsing a function body, add it to the crash stack, giving us something by Chris Lattner · 16 years ago
  30. e61b988 Removed an unfortunate cut and paste left-over. by Fariborz Jahanian · 16 years ago
  31. a6e3ac5 Implemented access check for ivars accessed inside by Fariborz Jahanian · 16 years ago
  32. b06d875 Partial fix for <rdar://problem/6645157> [clang on Xcode; regression]: error: instance variable 'someField' is private. by Steve Naroff · 16 years ago
  33. 175ba1e Some refactoring of recent code. No functionality change. by Fariborz Jahanian · 16 years ago
  34. b1006c7 Fix a corner case of message lookup looking for class methods. by Fariborz Jahanian · 16 years ago
  35. 6b9dfd4 Finish up some fixes related to <rdar://problem/6497631> Message lookup is sometimes different than gcc's. by Steve Naroff · 16 years ago
  36. 7f0f5dc Check that the return type for function definitions is complete. by Eli Friedman · 16 years ago
  37. 0b2b6e1 Switch attributes to be allocated from the declcontext bump pointer just like by Chris Lattner · 16 years ago
  38. cc58147 add an a Attr::Destroy method and force clients to go through it. As part of by Chris Lattner · 16 years ago
  39. b25df35 simplify Sema::AddInstanceMethodToGlobalPool, no functionality change. by Chris Lattner · 16 years ago
  40. 24e1e70 Change Parser::ParseCaseStatement to use an iterative approach to parsing by Chris Lattner · 16 years ago
  41. d198aba Change a warning to an error... by Steve Naroff · 16 years ago
  42. 268bc8c Implement an important missing warning when a selector by Fariborz Jahanian · 16 years ago
  43. f4c00ff Fix <rdar://problem/5982579> [clang on xcode] (using arch=x86_64): synthesized property 'sdkPath' must either be named the same as a compatible ivar or must explicitly name an ivar. by Steve Naroff · 16 years ago
  44. 9d40ee5 Fix <rdar://problem/6252237> [sema] qualified id should be disallowed in @catch statements. by Steve Naroff · 16 years ago
  45. f50cb36 Fix <rdar://problem/6632061> [sema] non object types should not be allowed in @catch statements. by Steve Naroff · 16 years ago
  46. 7ba138a Fix <rdar://problem/6640991> Exception handling executes wrong clause (Daniel, please verify). by Steve Naroff · 16 years ago
  47. 15edf0d Fix <rdar://problem/6497242> Inherited overridden protocol declared objects don't work. by Steve Naroff · 16 years ago
  48. ca33129 Fix <rdar://problem/6497608> clang does not catch ivar type mismatches in @implementation. by Steve Naroff · 16 years ago
  49. 7339749 PR3691: Add support for complex modes. I also tossed in support for XF by Eli Friedman · 16 years ago
  50. 2943aed Implement the basics of implicit instantiation of class templates, in by Douglas Gregor · 16 years ago
  51. 935fd76 Check of ivar access access control. by Fariborz Jahanian · 16 years ago
  52. c97fb9a Fix <rdar://problem/6635908> crash on invalid by Steve Naroff · 16 years ago
  53. 077c1e7 Diagnose a variety of access of ivars when they conflict with by Fariborz Jahanian · 16 years ago
  54. 78c39c7 Fixed a typo. by Fariborz Jahanian · 16 years ago
  55. b7f95f5 Check for duplicate declaration of method of a class in its extension. by Fariborz Jahanian · 16 years ago
  56. 6393519 Rework the way we find locally-scoped external declarations when we by Douglas Gregor · 16 years ago
  57. 8e2945a Fix <rdar://problem/6248764> parser rejects: bad receiver type 'CFStringRef'. by Steve Naroff · 16 years ago
  58. ed8a93d Fix PR3509 by providing correct starting locations for initializer lists by Douglas Gregor · 16 years ago
  59. 93b2bdb ObjCAtCatchStmt's ParamStmt is always a DeclStmt. by Daniel Dunbar · 16 years ago
  60. cddc888 "This patch uses the new ObjCImplDecl class to merge Sema::ImplMethodsVsClassMethods and Sema::ImplCategoryMethodsVsIntfMethods methods. by Chris Lattner · 16 years ago
  61. 0db28c5 Whoops, actually remove the VLA/VM check in FinalizeDeclaratorGroup. by Anders Carlsson · 16 years ago
  62. 1a7acfa Fix invalid VLAs/VMs in Sema::ActOnVariableDeclarator, so that the variable will have the right type by the time the initializer is checked. This ensures that code like by Anders Carlsson · 16 years ago
  63. b098c14 Remove PrevFunctionScope slot (it isn't needed)...use getParent() instead. by Steve Naroff · 16 years ago
  64. f306f86 Fix a crash in test/Parser/control-scope.c that testrunner didn't by Chris Lattner · 16 years ago
  65. ebf6443 Minor name change (move the ObjC prefix to a more appropriate place). by Steve Naroff · 16 years ago
  66. f3cf897 Fix <rdar://problem/6451399> problems with labels and blocks. by Steve Naroff · 16 years ago
  67. 709fa15 Check a few more kinds of declarations that make a scope. by Eli Friedman · 16 years ago
  68. 8f17b66 Start of checking for gotos which jump to an illegal destination. by Eli Friedman · 16 years ago
  69. c1efaec Eliminate CXXRecordType by Douglas Gregor · 16 years ago
  70. aca13a7 Add a FIXME for something I can't look at just yet by Douglas Gregor · 16 years ago
  71. 724651c Template instantiation for function types by Douglas Gregor · 16 years ago
  72. cd281c3 Implement template instantiation for pointer, reference, and (some) by Douglas Gregor · 16 years ago
  73. 9bc77b2 Diagnose gc attribute mismatch of property and its ivar. by Fariborz Jahanian · 16 years ago
  74. 173144a Give a code insertion hint for how to fix 'implicit int' warnings and errors. by Chris Lattner · 16 years ago
  75. 8c633a0 Fix a typo by Douglas Gregor · 16 years ago
  76. a97b666 In BuildAnonymousStructUnionMemberReference, we shouldn't invalidate OpLoc when by Ted Kremenek · 16 years ago
  77. 99ebf65 Implement the basic approach for instantiating types, with a lot of FIXME'd by Douglas Gregor · 16 years ago
  78. 35d276f upgrade various 'implicit int' warnings from an ext-warn to warning when not by Chris Lattner · 16 years ago
  79. 3d692df When checking printf-arguments for functions with '__attribute__ ((format (printf, X, Y)))' by Ted Kremenek · 16 years ago
  80. b2fb6de Clean up and document code modification hints. by Douglas Gregor · 16 years ago
  81. 35183ac Change the AST generated for offsetof a bit so that it looks like a by Eli Friedman · 16 years ago
  82. 3b8a36a Fix minor memory leak. Add comment describing what we need to do for by Eli Friedman · 16 years ago
  83. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 16 years ago
  84. 220b636 fix a bozobug. by Chris Lattner · 16 years ago
  85. 19753cf ok, not as broken as I thought, just confusing. This allows by Chris Lattner · 16 years ago
  86. 8879e3b allow wide strings to initialize arrays compatible with wchar_t. by Chris Lattner · 16 years ago
  87. dbb1ecc fix some sema problems with wide strings and hook up basic codegen for them. by Chris Lattner · 16 years ago
  88. fc705b8 Make the type associated with a ClassTemplateSpecializationDecl be a by Douglas Gregor · 16 years ago
  89. 4b2d3f7 Introduce code modification hints into the diagnostics system. When we by Douglas Gregor · 16 years ago
  90. bb71001 Drop uses of getAsPointerLikeType. - No functionality change. by Daniel Dunbar · 16 years ago
  91. 22dc0b0 Fix <rdar://problem/6574319> clang issues error on 'readonly' property with a defaul setter attribute. by Steve Naroff · 16 years ago
  92. 1f484f4 Fix <rdar://problem/6614945> method not found. by Steve Naroff · 16 years ago
  93. f1afaf6 Fix http://llvm.org/bugs/show_bug.cgi?id=3544. by Steve Naroff · 16 years ago
  94. 2850784 Make more AST nodes and semantic checkers dependent-expression-aware. by Sebastian Redl · 16 years ago
  95. 2129828 Zap the Sema constant initializer checking code that we aren't using by Eli Friedman · 16 years ago
  96. bc592e6 Fix for PR3663/3669: use TryToFixInvalidVariablyModifiedType for by Eli Friedman · 16 years ago
  97. 6bc9f7e Improve location information on "reused" class template specialization by Douglas Gregor · 16 years ago
  98. 88b7094 Perform additional semantic checking of class template by Douglas Gregor · 16 years ago
  99. 39a8de1 Implement parsing of nested-name-specifiers that involve template-ids, e.g., by Douglas Gregor · 16 years ago
  100. b90052a Use CheckAssignmentConstraints for checking the cleanup attr function. Fixes PR3656. by Anders Carlsson · 16 years ago