blob: e07ef72e43cdc30e12a34b8a39ae36aaa2f4ee1f [file] [log] [blame]
/* 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;
}