URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [guality/] [pr41447-1.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run { xfail *-*-* } } */ /* { dg-options "-g" } */ #include "guality.h" int a; int main (int argc, char *argv[]) { int tmp = a; int tmp2 = a; int tmp3; int res; GUALCHKVAL (a); GUALCHKVAL (tmp); GUALCHKVAL (tmp2); a = 0; tmp3 = tmp2; GUALCHKVAL (a); GUALCHKVAL (tmp); GUALCHKVAL (tmp2); GUALCHKVAL (tmp3); res = tmp - tmp2 + 1; return res; }
Go to most recent revision | Compare with Previous | Blame | View Log