]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr36300-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr36300-1.c
CommitLineData
fcb4587e
RG
1/* { dg-do run } */
2/* { dg-options "-O2 -fwrapv" } */
3
4extern void abort (void);
5
6#define VALUE ((int)((long long)U1 * (long long)3) + 2)
7
8int main(void)
9{
fcb4587e 10 long long Y, Y2;
40f9b82e
AH
11#if(__SIZEOF_INT__ >= 4)
12 int U1;
13#else
14 long U1;
15#endif
fcb4587e 16 int t;
fcb4587e
RG
17 U1 = -2147483647-1;
18
19 Y = ((long long)(VALUE * VALUE) * 3);
20
21 t = VALUE;
22 Y2 = ((long long)(t * t) * 3);
23
24 if (Y != Y2)
25 abort ();
26 return 0;
27}