URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030913-1.c] - Rev 149
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