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/] [guality/] [pr41616-1.c] - Rev 298
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; }