2011-12-08 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
[official-gcc.git] / libmudflap / testsuite / libmudflap.c / fail38-frag.c
blob9667e213418aa41ca59aef696973eacaa490160b
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 int main ()
6 struct a {
7 int x;
8 int y;
9 int z : 10;
12 struct b {
13 int x;
14 int y;
17 volatile struct b k;
18 volatile struct a *p;
20 p = (struct a*) &k;
22 p->z = 'q';
24 return 0;
26 /* { dg-output "mudflap violation 1.*" } */
27 /* { dg-output "Nearby object 1.*" } */
28 /* { dg-output "mudflap object.*.main. k.*" } */
29 /* { dg-do run { xfail *-*-* } } */