URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr42084.c] - Rev 298
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; }