Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libmudflap / testsuite / libmudflap.c / pass56-frag.c
blobe22fc8dbfd61be27f7db8b17a220f11f6e5af272
1 #include <stdio.h>
2 #include <stdlib.h>
4 int main ()
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;