2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020328-1.c
blob4b6f2bf4e211aa8f375af0c5a49cf8d8f52ca328
1 int b = 0;
3 func () { }
5 void
6 testit(int x)
8 if (x != 20)
9 abort ();
12 int
13 main()
16 int a = 0;
18 if (b)
19 func();
21 /* simplify_and_const_int would incorrectly omit the mask in
22 the line below. */
23 testit ((a + 23) & 0xfffffffc);
24 exit (0);