URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass56-frag.c] - Rev 855
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <stdlib.h> int main () { volatile int *k = (int *) malloc (sizeof (int)); volatile int l; if (k == NULL) abort (); *k = 5; free ((void *) k); __mf_set_options ("-ignore-reads"); l = *k; /* Should not trip, even though memory region just freed. */ return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log