[cfe-commits] r101017 - /cfe/trunk/test/CodeGenObjC/blocks.m

Chris Lattner sabre at nondot.org
Sun Apr 11 22:43:31 PDT 2010


Author: lattner
Date: Mon Apr 12 00:43:31 2010
New Revision: 101017

URL: http://llvm.org/viewvc/llvm-project?rev=101017&view=rev
Log:
fix an invalid use of super, you can't use super like this in a block!

Modified:
    cfe/trunk/test/CodeGenObjC/blocks.m

Modified: cfe/trunk/test/CodeGenObjC/blocks.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/blocks.m?rev=101017&r1=101016&r2=101017&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/blocks.m (original)
+++ cfe/trunk/test/CodeGenObjC/blocks.m Mon Apr 12 00:43:31 2010
@@ -29,7 +29,7 @@
 @interface B : A @end
 @implementation B
 -(void) im1 {
-  ^(void) { [super im0]; }();
+  ^(void) { [self im0]; }();
 }
 @end
 





More information about the cfe-commits mailing list