aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libmudflap/testsuite/libmudflap.c/pass10-frag.c
blob: f05650da5150ece8348ae5f8b8d924782bf61bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
int foo[10];
int sz = sizeof (int);

char *bar = (char *)foo;
bar [sz * 9] = 0;
return 0;
}