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.c-torture/] [execute/] [20030913-1.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* Assignments via pointers pointing to global variables were being killed by SSA-DCE. Test contributed by Paul Brook <paul@nowt.org> */ int glob; void fn2(int ** q) { *q = &glob; } void test() { int *p; fn2(&p); *p=42; } int main() { test(); if (glob != 42) abort(); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log