1. c9467cf In C++, set the type of each of the enumerators in an enumeration to by Douglas Gregor · 16 years ago
  2. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  3. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  4. 5b1f3f0 Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point) by Anders Carlsson · 16 years ago
  5. caaf29a Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
  6. 2988205 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
  7. 83f96f6 Some cleanups to the dependent-types commit, as suggested by Sebastian by Douglas Gregor · 16 years ago
  8. 391d895 Patch to allow a getter call using property dot-syntax notation. by Fariborz Jahanian · 16 years ago
  9. fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  10. 6082c62 Sema::ActOnMethodDeclaration(): Make sure we perform the default function/array conversion for parameter types. by Steve Naroff · 16 years ago
  11. ba45da8 Changed 'readonly' 'retain/copy' diagnostics into by Fariborz Jahanian · 16 years ago
  12. 9bfb2a2 Since we do not allow a readonly property to be 'copy'retain', we by Fariborz Jahanian · 16 years ago
  13. f57172b Move Sema::isTemplateParameterDecl to Decl::isTemplateParameter, where it belongs by Douglas Gregor · 16 years ago
  14. e50897a fix 80-col violation. by Zhongxing Xu · 16 years ago
  15. 7fd1df2 Pass the VLA size expr range to the VLA diags by Anders Carlsson · 16 years ago
  16. 96e05bc Improve VLA diagnostics/sema checking. Fixes PR2361 and PR2352. by Anders Carlsson · 16 years ago
  17. 5dd4129 Setters returning a typedef of 'void' should not cause error. by Fariborz Jahanian · 16 years ago
  18. 1ac2bc4 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  19. 196d0ed Improve error reporting of property and setter/getter type mimatches. by Fariborz Jahanian · 16 years ago
  20. ec604c8 Check for correct'void' return type for setter methods. by Fariborz Jahanian · 16 years ago
  21. 9f1e572 Add diagnostics for bitfields. by Anders Carlsson · 16 years ago
  22. a75023d Simplify some diagnostics. by Anders Carlsson · 16 years ago
  23. 77e14bd Changed a 'FIXME' into new comment. Added a test case by Fariborz Jahanian · 16 years ago
  24. 567c8df Patch to diagnose a variety of misuse of property by Fariborz Jahanian · 16 years ago
  25. 5c37de7 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  26. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  27. ae6f6fd This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  28. 8daab97 (instance/class) Method type checking between class and its implementation. by Fariborz Jahanian · 16 years ago
  29. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  30. 49184b2 Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes PR2963 by Anders Carlsson · 16 years ago
  31. 9e09f5d Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130. by Anders Carlsson · 16 years ago
  32. ebed797 Rename: FindContext -> FindDeclVisibleInContext. by Zhongxing Xu · 16 years ago
  33. de73941 Patch for diagnosing type mismatch between by Fariborz Jahanian · 16 years ago
  34. 371f258 change getCurFunctionDecl to skip through Block contexts to find by Chris Lattner · 16 years ago
  35. 06de37b Output better diagnostics for continuation class by Fariborz Jahanian · 16 years ago
  36. 7f66239 Code cleanup in new handling. by Sebastian Redl · 16 years ago
  37. f5e8834 Fix bug in attribute(nonnull) processing where not all of the parameter indices in nonnull(...) were actually processed. by Ted Kremenek · 16 years ago
  38. 636a7c4 Fix some diagnostics and enhance test cases. Now tests member new and ambiguous overloads. by Sebastian Redl · 16 years ago
  39. b5a57a6 Overload resolution for the operator new function. Member version is still untested. by Sebastian Redl · 16 years ago
  40. cb35472 Fix typo in index operator overloading. by Sebastian Redl · 16 years ago
  41. f3cd3fd More type-checking of setter/getter methods. This is still work in prgress. by Fariborz Jahanian · 16 years ago
  42. cee63fb Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
  43. b85cce6 This patch corrects problem in searching for a setter/getter method for by Fariborz Jahanian · 16 years ago
  44. e89b028 Initialize storage class even if we got an erroneous mutable by Douglas Gregor · 16 years ago
  45. d265277 Revert change that made isNullPointerConstant start emitting warnings. We don't want that :) by Anders Carlsson · 16 years ago
  46. 4000ea6 Add Sema::isNullPointerConstant which extwarns if necessary. Use it in Sema::CheckConditionalOperands. by Anders Carlsson · 16 years ago
  47. d3a61d5 Use VerifyIntegerConstantExpression for case values. by Anders Carlsson · 16 years ago
  48. e21555e Add Sema::VerifyIntegerConstantExpression by Anders Carlsson · 16 years ago
  49. 2d8b273 Implement the GNU __null extension by Douglas Gregor · 16 years ago
  50. 7ca0976 Add implicit conversions for Objective-C qualified ids, e.g., by Douglas Gregor · 16 years ago
  51. bf40818 Cleanup formatting by Douglas Gregor · 16 years ago
  52. 63a9490 Don't complain about block pointer to void* conversions by Douglas Gregor · 16 years ago
  53. 071f2ae Support block pointer conversions in C++. I'm storing the test case locally until we can enable blocks in C++ by Douglas Gregor · 16 years ago
  54. cb7de52 Implement implicit conversions for Objective-C specific types, e.g., by Douglas Gregor · 16 years ago
  55. b16308f Removed a FIXME. Added a test case for anonymous category. by Fariborz Jahanian · 16 years ago
  56. 8cf0bb3 Set default property attributes on each property. by Fariborz Jahanian · 16 years ago
  57. 7ffd0de Fix a minor typo in the handling of the conditional operator for Objective-C interface pointers by Douglas Gregor · 16 years ago
  58. 0a39668 Tweak the new ResolveOverloadedCallFn to just return a FunctionDecl. It makes ActOnCallExpr simpler by Douglas Gregor · 16 years ago
  59. f6b8969 Move the overloading logic of Sema::ActOnCallExpr to a separate function by Douglas Gregor · 16 years ago
  60. e793a6e Patch to remove bogus waring when a property declaration by Fariborz Jahanian · 16 years ago
  61. d14094d Remove some bad characters from comment. by Sebastian Redl · 16 years ago
  62. d162584 Change a whole lot of diagnostics to take QualType's directly by Chris Lattner · 16 years ago
  63. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  64. 8ec03f5 Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  65. 077bf5e Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 16 years ago
  66. 1326a3d convert some more warnings to NOTEs. by Chris Lattner · 16 years ago
  67. 8b265bd remove warn_previous_declaration by Chris Lattner · 16 years ago
  68. 5f4a682 Make all the 'redefinition' diagnostics more consistent, and make the by Chris Lattner · 16 years ago
  69. b8b96af make some objc redefinition warnings more consistent: call definitions by Chris Lattner · 16 years ago
  70. 6ff0fc3 Tweak duplicate category diagnostic to work like the duplicate protocol diagnostic. by Chris Lattner · 16 years ago
  71. 08631c5 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  72. 011bb4e add support for inserting a DeclarationName into a diagnostic directly by Chris Lattner · 16 years ago
  73. 3fdf4b0 Genericize the qualtype formating callback to support any diag argument. by Chris Lattner · 16 years ago
  74. 22caddc Add support for sending QualType's directly into diags and convert two by Chris Lattner · 16 years ago
  75. 6dde0d5 Case values must be evaluated by Anders Carlsson · 16 years ago
  76. 51fe996 Use Expr::Evaluate for case statements. Fixes PR2525 by Anders Carlsson · 16 years ago
  77. ba8d2d6 Support for implicit property assignment. Error assigning to by Fariborz Jahanian · 16 years ago
  78. 5daf570 New AST node to access "implicit" setter/getter using property dor syntax. by Fariborz Jahanian · 16 years ago
  79. e4c452c Implement a %plural modifier for complex plural forms in diagnostics. Use it in the overload diagnostics. by Sebastian Redl · 16 years ago
  80. 3cfa928 move the Diag method for Sema to be inline. This shrinks the release-asserts by Chris Lattner · 16 years ago
  81. 3cbfe2c Split the DiagnosticInfo class into two disjoint classes: by Chris Lattner · 16 years ago
  82. 4c5d320 Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  83. 2c21a07 merge some simple call diagnostics. by Chris Lattner · 16 years ago
  84. b1b4d33 print a type in a diagnostic. by Chris Lattner · 16 years ago
  85. bbe2743 Allow redeclaration of typedefs in C++ by Douglas Gregor · 16 years ago
  86. 1ca50c3 Fix overloading of non-static member functions that differ in their cv-qualifiers by Douglas Gregor · 16 years ago
  87. 416e46f merge 3 more diagnostics into 1. by Chris Lattner · 16 years ago
  88. af7ae4e Add the concept of "modifiers" to the clang diagnostic format by Chris Lattner · 16 years ago
  89. 3528d35 Change CheckIncrementDecrementOperand to test for common cases first by Chris Lattner · 16 years ago
  90. fc195ef Cleanup memory management in overloading of operator->, slightly by Douglas Gregor · 16 years ago
  91. 621b393 Don't print canonical types in overloading-related diagnostics by Douglas Gregor · 16 years ago
  92. 24b93f2 __weak ivar need not warn. by Fariborz Jahanian · 16 years ago
  93. 8ba1074 Add support for overloaded operator-> when used in a member access by Douglas Gregor · 16 years ago
  94. a967a6f Fix strange quote characters by Douglas Gregor · 16 years ago
  95. 69d27b9 Daniel really really likes = instead of += :) by Chris Lattner · 16 years ago
  96. f3a41af remove the last old-fashioned Diag method. Transition complete! by Chris Lattner · 16 years ago
  97. 5dc266a remove another old Diag method. by Chris Lattner · 16 years ago
  98. d3a94e2 remove another old-school Diag method. by Chris Lattner · 16 years ago
  99. 572af49 remove the type_info identifier cache. Compared to the cost by Chris Lattner · 16 years ago
  100. 8edea83 compared to the rest of the code in Sema::GetStdNamespace(), by Chris Lattner · 16 years ago