1 /* This caused an ICE on s390x due to a reload inheritance bug. */
3 /* { dg-do compile { target s390*-*-* } } */
4 /* { dg-options "-O2" } */
6 struct point
{ double x
, y
; };
7 extern void use (struct point
);
9 void test (struct point
*pc
, struct point p1
)
11 struct point p0
= *pc
;
13 if (p0
.x
== p1
.x
&& p0
.y
== p1
.y
)
16 asm ("" : : : "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10");