OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr20927.c] - Rev 823

Go to most recent revision | Compare with Previous | Blame | View Log

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

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.