aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema
AgeCommit message (Expand)Author
2008-12-09Support for implementation of property in the case whereFariborz Jahanian
2008-12-09Sema::ActOnMethodDeclaration(): Make sure we perform the default function/arr...Steve Naroff
2008-12-08Changed 'readonly' 'retain/copy' diagnostics intoFariborz Jahanian
2008-12-08Since we do not allow a readonly property to be 'copy'retain', weFariborz Jahanian
2008-12-08Move Sema::isTemplateParameterDecl to Decl::isTemplateParameter, where it bel...Douglas Gregor
2008-12-08fix 80-col violation.Zhongxing Xu
2008-12-07Pass the VLA size expr range to the VLA diagsAnders Carlsson
2008-12-07Improve VLA diagnostics/sema checking. Fixes PR2361 and PR2352.Anders Carlsson
2008-12-06Setters returning a typedef of 'void' should not cause error.Fariborz Jahanian
2008-12-06Use of properties declared in protocols in the categoryFariborz Jahanian
2008-12-06Improve error reporting of property and setter/getterFariborz Jahanian
2008-12-06Check for correct'void' return type for setter methods.Fariborz Jahanian
2008-12-06Add diagnostics for bitfields.Anders Carlsson
2008-12-06Simplify some diagnostics.Anders Carlsson
2008-12-06Changed a 'FIXME' into new comment. Added a test caseFariborz Jahanian
2008-12-06Patch to diagnose a variety of misuse of propertyFariborz Jahanian
2008-12-06Add support for calls to dependent names within templates, e.g.,Douglas Gregor
2008-12-05Introduce basic support for dependent types, type-dependentDouglas Gregor
2008-12-05This test checks for duplicate implementation of the same Fariborz Jahanian
2008-12-05(instance/class) Method type checking between class and its implementation.Fariborz Jahanian
2008-12-05Representation of template type parameters and non-type templateDouglas Gregor
2008-12-05Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes P...Anders Carlsson
2008-12-05Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130.Anders Carlsson
2008-12-05Rename: FindContext -> FindDeclVisibleInContext.Zhongxing Xu
2008-12-05Patch for diagnosing type mismatch between Fariborz Jahanian
2008-12-04change getCurFunctionDecl to skip through Block contexts to findChris Lattner
2008-12-04Output better diagnostics for continuation classFariborz Jahanian
2008-12-04Code cleanup in new handling.Sebastian Redl
2008-12-04Fix bug in attribute(nonnull) processing where not all of the parameter indic...Ted Kremenek
2008-12-04Fix some diagnostics and enhance test cases. Now tests member new and ambiguo...Sebastian Redl
2008-12-03Overload resolution for the operator new function. Member version is still un...Sebastian Redl
2008-12-03Fix typo in index operator overloading.Sebastian Redl
2008-12-02More type-checking of setter/getter methods. This is stillFariborz Jahanian
2008-12-02Handle new by passing the Declaration to the Action, not a processed type.Sebastian Redl
2008-12-02This patch corrects problem in searching for a setter/getter method forFariborz Jahanian
2008-12-01Initialize storage class even if we got an erroneous mutableDouglas Gregor
2008-12-01Revert change that made isNullPointerConstant start emitting warnings. We don...Anders Carlsson
2008-12-01Add Sema::isNullPointerConstant which extwarns if necessary. Use it in Sema::...Anders Carlsson
2008-12-01Use VerifyIntegerConstantExpression for case values.Anders Carlsson
2008-11-30Add Sema::VerifyIntegerConstantExpressionAnders Carlsson
2008-11-29Implement the GNU __null extensionDouglas Gregor
2008-11-27Add implicit conversions for Objective-C qualified ids, e.g.,Douglas Gregor
2008-11-27Cleanup formattingDouglas Gregor
2008-11-27Don't complain about block pointer to void* conversionsDouglas Gregor
2008-11-27Support block pointer conversions in C++. I'm storing the test case locally u...Douglas Gregor
2008-11-26Implement implicit conversions for Objective-C specific types, e.g., Douglas Gregor
2008-11-26Removed a FIXME. Added a test case for anonymous category.Fariborz Jahanian
2008-11-26Set default property attributes on each property.Fariborz Jahanian
2008-11-26Fix a minor typo in the handling of the conditional operator for Objective-C ...Douglas Gregor
2008-11-26Tweak the new ResolveOverloadedCallFn to just return a FunctionDecl. It makes...Douglas Gregor