index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
SemaDeclObjC.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Don't crash when a duplicate interface/protocol is inside an extern "C" context.
Argyrios Kyrtzidis
2011-11-13
1
-19
/
+32
*
Add a method in ASTMutationListener for the last use of Decl's [is/set]Change...
Argyrios Kyrtzidis
2011-11-12
1
-2
/
+5
*
[PCH] When completing an objc forward reference, do not serialize the chain o...
Argyrios Kyrtzidis
2011-11-12
1
-10
/
+6
*
For the "'@end' is missing in implementation context" point at the location o...
Argyrios Kyrtzidis
2011-10-27
1
-1
/
+1
*
Fixes a minor hick up to my last patch.
Fariborz Jahanian
2011-10-22
1
-2
/
+6
*
objc: private methods can have their attributes, no diagnostic is required.
Fariborz Jahanian
2011-10-22
1
-7
/
+30
*
Introduce ASTConsumer::HandleTopLevelDeclInObjCContainer which accepts
Argyrios Kyrtzidis
2011-10-17
1
-0
/
+5
*
Keep track when a ObjC interface/protocol was initially created as a forward ...
Argyrios Kyrtzidis
2011-10-17
1
-2
/
+4
*
Really protect from infinite loop when there are objc method redeclarations.
Argyrios Kyrtzidis
2011-10-14
1
-2
/
+2
*
Keep track of objc method redeclarations in the same interface.
Argyrios Kyrtzidis
2011-10-14
1
-0
/
+4
*
Constant expression evaluation refactoring:
Richard Smith
2011-10-10
1
-11
/
+8
*
objc: Some refactoring of overriding method decl. code
Fariborz Jahanian
2011-10-10
1
-14
/
+30
*
Implicitly assume that a ObjC category to an unavailable interface is also un...
Argyrios Kyrtzidis
2011-10-06
1
-3
/
+4
*
When using an unavailable/deprecated interface Foo inside Foo's interface/imp...
Argyrios Kyrtzidis
2011-10-06
1
-9
/
+9
*
Fix the rewriter, rdar://10234024.
Argyrios Kyrtzidis
2011-10-05
1
-1
/
+2
*
Improve location fidelity of objc decls.
Argyrios Kyrtzidis
2011-10-04
1
-10
/
+10
*
Allow getting all source locations of selector identifiers in a ObjCMethodDecl.
Argyrios Kyrtzidis
2011-10-03
1
-7
/
+8
*
Pass from the parser the locations of selector identifiers when creating
Argyrios Kyrtzidis
2011-10-03
1
-3
/
+4
*
Don't keep NumSelectorArgs in the ObjCMethodDecl, the number can be derived f...
Argyrios Kyrtzidis
2011-10-03
1
-2
/
+1
*
Tweak -Wobjc-missing-super-calls to not warning about missing [super dealloc]...
Ted Kremenek
2011-09-28
1
-2
/
+3
*
objcetive-c-arc: When overriding a method, its ns_consumed patameter
Fariborz Jahanian
2011-09-27
1
-3
/
+30
*
Rename Diagnostic to DiagnosticsEngine as per issue 5397
David Blaikie
2011-09-25
1
-3
/
+4
*
Switch assert(0/false) llvm_unreachable.
David Blaikie
2011-09-23
1
-1
/
+1
*
Give conversions of block pointers to ObjC pointers a different cast kind
John McCall
2011-09-09
1
-1
/
+6
*
Implement the Objective-C 'instancetype' type, which is an alias of
Douglas Gregor
2011-09-08
1
-17
/
+36
*
objective-c: this patch (re)introduces objective-c's default property
Fariborz Jahanian
2011-08-31
1
-4
/
+0
*
objective-c - This patch buffers method implementations
Fariborz Jahanian
2011-08-31
1
-6
/
+14
*
Remove a few mutating ObjCCategoryDecl methods.
Argyrios Kyrtzidis
2011-08-30
1
-19
/
+10
*
Remove a couple of unnecessary objc method lookups.
Argyrios Kyrtzidis
2011-08-30
1
-7
/
+7
*
Do not warn about [super finalize] in arc mode.
Nico Weber
2011-08-29
1
-1
/
+3
*
Minor clean up of objc's decl context stuff.
Fariborz Jahanian
2011-08-29
1
-0
/
+1
*
Warn on missing [super finalize] calls.
Nico Weber
2011-08-28
1
-2
/
+8
*
objective-c: Treat top-level objective-c declarations
Fariborz Jahanian
2011-08-27
1
-13
/
+9
*
Don't warn on category implementing a method, if
Fariborz Jahanian
2011-08-25
1
-1
/
+1
*
objc - fix a bug exposed by my recent decl context
Fariborz Jahanian
2011-08-25
1
-0
/
+3
*
Reverse r138567 until a buildbot failure is investigated.
Fariborz Jahanian
2011-08-25
1
-11
/
+11
*
Fixes a typo in my last patch.
Fariborz Jahanian
2011-08-25
1
-1
/
+1
*
objc -arse: Use DeclGroup for forward class declarations;
Fariborz Jahanian
2011-08-25
1
-11
/
+11
*
Do not perform check for missing '[super dealloc]' under ARC as calling -deal...
Ted Kremenek
2011-08-22
1
-1
/
+3
*
objc - minor comment fix up and cleanup.
Fariborz Jahanian
2011-08-22
1
-2
/
+2
*
Warn on missing [super dealloc] calls.
Nico Weber
2011-08-22
1
-3
/
+11
*
Restore patch I reversed in r138040. Known buildbot
Fariborz Jahanian
2011-08-22
1
-9
/
+15
*
Revers r138040. Need to look at a few buildbot failures.
Fariborz Jahanian
2011-08-19
1
-15
/
+9
*
objective-c: Bring objective-c handling of decl context
Fariborz Jahanian
2011-08-19
1
-9
/
+15
*
Mark objc methods that are implicitly declared for properties (not user-decla...
Argyrios Kyrtzidis
2011-08-17
1
-1
/
+2
*
objective-c: Using existing infrastructure for finding
Fariborz Jahanian
2011-08-10
1
-266
/
+51
*
objective-c: diagnose protocol inconsistencies in following
Fariborz Jahanian
2011-08-08
1
-1
/
+138
*
Silence the category-replacing-class-method warning for +load: category
David Chisnall
2011-08-08
1
-0
/
+3
*
Revert 136984 and 136927.
Ted Kremenek
2011-08-05
1
-126
/
+1
*
objective-c: diagnose protocol inconsistencies in following
Fariborz Jahanian
2011-08-04
1
-1
/
+126
[next]