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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr25196.c] - Blame information for rev 853

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

Line No. Rev Author Line
1 149 jeremybenn
/* { dg-do run { target i?86-*-* x86_64-*-* } } */
2
/* { dg-require-effective-target ilp32 } */
3
/* { dg-options "-march=i386 -O3 -fomit-frame-pointer" } */
4
 
5
/* For this test case, we used to do an invalid load motion after
6
   reload, because we missed autoincrements of the stack pointer.  */
7
 
8
extern void abort (void);
9
 
10
static int j;
11
 
12
static void __attribute__((noinline))
13
f1 (int a, int b, int c, int d, int e)
14
{
15
  j = a;
16
}
17
 
18
int __attribute__((noinline))
19
f2 (int a, int b, int c, int d, int e)
20
{
21
  if ((b & 0x1111) != 1)
22
    f1 (a, b, c, d, e);
23
  return 0;
24
}
25
 
26
int
27
main (void)
28
{
29
  f2 (123, 0, 0, 0, 0);
30
  if (j != 123)
31
    abort ();
32
  return 0;
33
}
34
 

powered by: WebSVN 2.1.0

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