Skip several analyzer socket tests on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr96648.c
bloba6b0c727287f74eab7924098d81c3b33266065dd
1 /* { dg-additional-options "-O1" } */
3 struct vd {
4 struct vd *rs;
5 };
7 struct fh {
8 struct vd cl;
9 };
11 struct i3 {
12 struct fh *h4;
15 struct fh *
16 gm (void);
18 void
19 j7 (struct vd *);
21 inline void
22 mb (struct vd *e7)
24 j7 (e7->rs);
27 void
28 po (struct i3 *d2)
30 struct i3 *s2;
32 d2->h4 = gm ();
33 mb (&d2->h4->cl);
34 s2 = ({ d2 - 1; });
35 po (s2);