Dead
[official-gcc.git] / gomp-20050608-branch / libmudflap / testsuite / libmudflap.c / fail16-frag.c
blob317e2744731121ab6355f21605f456030378ac40
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 int main ()
6 struct base {
7 int basic;
8 };
10 struct derived {
11 struct base common;
12 char extra;
15 struct base *bp;
17 bp = (struct base *) malloc (sizeof (struct base));;
19 bp->basic = 10;
20 ((struct derived *)bp)->extra = 'x';
21 return 0;
23 /* { dg-output "mudflap violation 1.*" } */
24 /* { dg-output "Nearby object 1.*" } */
25 /* { dg-output "mudflap object.*.malloc region.*" } */
26 /* { dg-do run { xfail *-*-* } } */