blob: 904868af0d1dd9c54856f2fc5ad1ac7cf52e2bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int foo (int *u, int i)
{
return u[i]; /* this dereference should not be instrumented */
}
int main ()
{
int *k = malloc (6);
int l = foo (k, 8);
int boo [8];
int m = boo [l % 2 + 12]; /* should not be instrumented */
return m & strlen (""); /* a fancy way of saying "0" */
}
/* { dg-options "-fmudflap -fmudflapir -lmudflap" } */
|