PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr28778.c
blobf96a66cd30b7bb54c6d4f0e96b921a7c513deec0
1 extern void abort(void);
2 typedef long GLint;
3 void aglChoosePixelFormat (const GLint *);
5 void
6 find (const int *alistp)
8 const int *blist;
9 int list[32];
10 if (alistp)
11 blist = alistp;
12 else
14 list[3] = 42;
15 blist = list;
17 aglChoosePixelFormat ((GLint *) blist);
20 void
21 aglChoosePixelFormat (const GLint * a)
23 int *b = (int *) a;
24 if (b[3] != 42)
25 abort ();
28 int
29 main (void)
31 find (0);
32 return 0;