URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20020715-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR optimization/7153 */ /* Verify that GCC doesn't promote a register when its lifetime is not limited to one basic block. */ void f(char); void g(void); void scale(void) { int width; char bytes; char *src; if (width) { bytes = *src; g(); width *= bytes; } f(bytes); }
Go to most recent revision | Compare with Previous | Blame | View Log