URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr42084.c] - Rev 758
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O1 -fno-delete-null-pointer-checks" } */ extern void abort (void); int g = 0; static int __attribute__((noinline)) f (long long a, long long b) { int cmp; cmp = a > b; if (&g == 0) cmp-=2; else cmp++; return cmp; } int main (void) { int ret = f (2, 1); if (ret != 2) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log