[PATCH] match.pd: Fold x/sqrt(x) to sqrt(x)
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991202-2.c
blob38b1f1bfa76f6e1b2b1f76a2b268ee7999949062
1 void abort (void);
2 void exit (int);
4 int
5 f1 ()
7 unsigned long x, y = 1;
9 x = ((y * 8192) - 216) % 16;
10 return x;
13 int
14 main ()
16 if (f1 () != 8)
17 abort ();
18 exit (0);