blob: e22fc8dbfd61be27f7db8b17a220f11f6e5af272 [file] [log] [blame]
#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;
}