URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass34-frag.c] - Rev 858
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <stdlib.h> #include <string.h> void test (int *k) { if (*k > 5) { *k --; } } int z; int main () { /* z is initialized, but not via a pointer, so not instrumented */ z = rand (); test (& z); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log