URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030828-1.c] - Rev 688
Compare with Previous | Blame | View Log
const int *p; int bar (void) { return *p + 1; } main () { /* Variable 'i' is never used but it's aliased to a global pointer. The alias analyzer was not considering that 'i' may be used in the call to bar(). */ const int i = 5; p = &i; if (bar() != 6) abort (); exit (0); }