comparison libmudflap/testsuite/libmudflap.c/pass56-frag.c @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 int main ()
5 {
6 volatile int *k = (int *) malloc (sizeof (int));
7 volatile int l;
8 if (k == NULL) abort ();
9 *k = 5;
10 free ((void *) k);
11 __mf_set_options ("-ignore-reads");
12 l = *k; /* Should not trip, even though memory region just freed. */
13 return 0;
14 }