aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libmudflap/testsuite/libmudflap.c/pass56-frag.c
blob: e22fc8dbfd61be27f7db8b17a220f11f6e5af272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}