1 /* { dg-do run } */
2 /* { dg-options "-O2 -w -fipa-bit-cp"  } */
3 static int
4 __attribute__ ((noinline))
test(int a)5 test (int a)
6 {
7    if (!(a&2))
8      link_error ();
9 }
main()10 main()
11 {
12   test (2);
13   test (3);
14   test (6);
15   return 0;
16 }
17