re PR ipa/64668 (internal compiler error: in compare_ssa_name, at ipa-icf-gimple...
authorMartin Liska <mliska@suse.cz>
Mon, 19 Jan 2015 22:02:04 +0000 (23:02 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 19 Jan 2015 22:02:04 +0000 (22:02 +0000)
Fix PR64668.

* objc/compile/pr64668.m: New test.
PR ipa/64668
* ipa-icf-gimple.c (func_checker::compare_operand): Call proper
function for second argument of OBJ_TYPE_REF.

From-SVN: r219861

gcc/ChangeLog
gcc/ipa-icf-gimple.c
gcc/testsuite/ChangeLog
gcc/testsuite/objc/compile/pr64668.m [new file with mode: 0644]

index ea61db20226a3c8f051eda585300d66311398c4f..932485f135f86c68dfa6c6bb8fefb1a1a5cb66ac 100644 (file)
@@ -1,3 +1,9 @@
+2015-01-19  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/64668
+       * ipa-icf-gimple.c (func_checker::compare_operand): Call proper
+       function for second argument of OBJ_TYPE_REF.
+
 2015-01-19  Jan Hubicka  <hubicka@ucw.cz>
 
        PR ipa/64218
index b35d66c9a454e541a9f98c90e4989a6727030124..5b176d019d71d986b4e7ac2aa5d97854bc00c3e5 100644 (file)
@@ -456,7 +456,7 @@ func_checker::compare_operand (tree t1, tree t2)
        z2 = TREE_OPERAND (t2, 2);
 
        ret = compare_ssa_name (x1, x2)
-             && compare_ssa_name (y1, y2)
+             && compare_operand (y1, y2)
              && compare_cst_or_decl (z1, z2);
 
        return return_with_debug (ret);
index 03da146fe4a2fc82fa7be72f68e85709523c8823..13bc7ce82b7aa3c2e14ceb8ea1945933c4345e15 100644 (file)
@@ -1,3 +1,7 @@
+2015-01-19  Martin Liska  <mliska@suse.cz>
+
+       * objc/compile/pr64668.m: New test.
+
 2015-01-19  David Malcolm  <dmalcolm@redhat.com>
 
        * jit.dg/test-arith-overflow.c: Include stdbool.h.
diff --git a/gcc/testsuite/objc/compile/pr64668.m b/gcc/testsuite/objc/compile/pr64668.m
new file mode 100644 (file)
index 0000000..23a15d2
--- /dev/null
@@ -0,0 +1,20 @@
+typedef struct objc_object {} *id;
+typedef struct _NSZone NSZone;
+@class NSCoder;
+@protocol NSObject - (Class) class;
+@end @protocol NSCopying - (id) copyWithZone: (NSZone*)zone;
+@end @protocol NSMutableCopying - (id) mutableCopyWithZone: (NSZone*)zone;
+@end @protocol NSCoding - (void) encodeWithCoder: (NSCoder*)aCoder;
+@end  @interface NSObject <NSObject> {}
+@end typedef double NSTimeInterval;
+@interface NSString :NSObject <NSCoding, NSCopying, NSMutableCopying> + (id) string;
+@end @interface NSConstantString : NSString {}
+@end @class NSMutableArray, NSMutableDictionary, NSMutableData, NSData, NSString;
+@interface NSBundle : NSObject {}
+enum { NSMixedState = -1, NSOffState = 0, NSOnState = 1 };
+@end @class NSWindow;
+@interface IBInspector : NSObject { id object; }
+@end @interface GormScrollViewAttributesInspector : IBInspector { id verticalScroll; id horizontalScroll; }
+@end @implementation GormScrollViewAttributesInspector - init {}
+- (void) verticalSelected: (id)sender { [super ok: sender]; [object setHasVerticalScroller: ([verticalScroll state] == NSOnState)]; }
+- (void) horizontalSelected: (id)sender { [super ok: sender]; [object setHasHorizontalScroller: ([horizontalScroll state] == NSOnState)]; }