blob: e07ef72e43cdc30e12a34b8a39ae36aaa2f4ee1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Test for __imag__ side effects; see PR 33192. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do run } */
/* { dg-options "-std=gnu99" } */
extern void abort (void);
extern void exit (int);
int
main (void)
{
int i, j;
i = 1;
j = __imag__ ++i;
if (i != 2 || j != 0)
abort ();
return 0;
}
|