URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [statement-expression-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/30253, We would ICE with statement expressions in a conditional expression because we forgot to update the wrapper function for the gimple modify statement. */ #define f(x) ({ unsigned tmp=x; tmp; }) unsigned foo(unsigned x) { return __builtin_constant_p(x) ? 0 : f(x); }
Go to most recent revision | Compare with Previous | Blame | View Log