Age | Commit message (Expand) | Author |
2009-03-29 | tighten this up, the decl *must* be a declcontext, no need for the dynamic ch... | Chris Lattner |
2009-03-28 | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner |
2009-03-21 | Issue error if variables are defined inside an objc class, | Fariborz Jahanian |
2009-03-18 | objc: Implemented variables declared in class interface | Fariborz Jahanian |
2009-03-14 | Make Selector::getIdentifierInfo() private. I took a first attempt at this last | Ted Kremenek |
2009-03-13 | Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revis... | Steve Naroff |
2009-03-07 | Revert my last couple patches until I can get them to not make the tests fail. | Ted Kremenek |
2009-03-07 | Teach Diagnostic about Selector. | Ted Kremenek |
2009-03-07 | Selector: (changes made after discussing this more with Steve Naroff) | Ted Kremenek |
2009-03-05 | Tweak diag for <rdar://problem/5982579> [clang on xcode] (using arch=x86_64):... | Steve Naroff |
2009-03-05 | Fix <rdar://problem/6144382> [sema] gcc inconsistency w.r.t. forward protocol... | Steve Naroff |
2009-03-04 | simplify Sema::AddInstanceMethodToGlobalPool, no functionality change. | Chris Lattner |
2009-03-03 | Fix <rdar://problem/5982579> [clang on xcode] (using arch=x86_64): synthesize... | Steve Naroff |
2009-03-03 | Fix <rdar://problem/6497242> Inherited overridden protocol declared objects d... | Steve Naroff |
2009-03-03 | Fix <rdar://problem/6497608> clang does not catch ivar type mismatches in @im... | Steve Naroff |
2009-03-02 | Fixed a typo. | Fariborz Jahanian |
2009-03-02 | Check for duplicate declaration of method of a class | Fariborz Jahanian |
2009-03-01 | "This patch uses the new ObjCImplDecl class to merge Sema::ImplMethodsVsClas... | Chris Lattner |
2009-02-28 | Minor name change (move the ObjC prefix to a more appropriate place). | Steve Naroff |
2009-02-28 | Fix <rdar://problem/6451399> problems with labels and blocks. | Steve Naroff |
2009-02-27 | Diagnose gc attribute mismatch of property and its ivar. | Fariborz Jahanian |
2009-02-26 | Fix <rdar://problem/6574319> clang issues error on 'readonly' property with a... | Steve Naroff |
2009-02-23 | fix rdar://6611778, a redefinition of an interface was causing an | Chris Lattner |
2009-02-20 | Fix <rdar://problem/6500554> missing objc error message. | Steve Naroff |
2009-02-20 | fix indentation | Chris Lattner |
2009-02-20 | add plumbing to get ASTContext& down to allocation/deallocation points in Obj... | Chris Lattner |
2009-02-20 | remove some more methods from objc decls, using the iterator | Chris Lattner |
2009-02-18 | Downgrade complaints about calling unavailable functions to a warning | Douglas Gregor |
2009-02-16 | diagnose uses of deprecated typenames and tags. | Chris Lattner |
2009-02-16 | warn about interfaces that inherit from deprecated classes. | Chris Lattner |
2009-02-16 | warn about categories that implement deprecated interfaces. | Chris Lattner |
2009-02-16 | early exit on error. This code is creating an invalid decl on error. This is | Chris Lattner |
2009-02-16 | Remove an unused variable (which caused a warning). | Fariborz Jahanian |
2009-02-16 | Remove FindIvarDeclaration. Use lookupInstanceVariable is is functionally | Fariborz Jahanian |
2009-02-16 | code cleanup | Chris Lattner |
2009-02-16 | propagate attributes onto property decls. | Chris Lattner |
2009-02-16 | Untabify. | Ben Laurie |
2009-02-14 | simplify some code. | Chris Lattner |
2009-02-04 | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor |
2009-02-04 | Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate'... | Steve Naroff |
2009-02-02 | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor |
2009-01-30 | Eliminated LookupCriteria, whose creation was causing a bottleneck for | Douglas Gregor |
2009-01-29 | diags moved, so these casts are no longer needed. | Chris Lattner |
2009-01-29 | Suppress a warning | Douglas Gregor |
2009-01-29 | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner |
2009-01-29 | Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupD... | Steve Naroff |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-19 | Type of property and its ivar is more restrictive | Fariborz Jahanian |
2009-01-17 | Diagnose when method parameter is an object. | Fariborz Jahanian |