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