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