(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr67029.c
       1  /* { dg-do compile { target { int128 && scheduling } } } */
       2  /* { dg-options "-O2 -fschedule-insns" } */
       3  /* { dg-additional-options "-fstack-protector" { target fstack_protector } } */
       4  
       5  extern void fn2 (char *);
       6  __int128 a, b;
       7  int
       8  fn1 (void)
       9  {
      10    char e[32];
      11    fn2 (e);
      12    b = 9 * (a >> 1);
      13    return 0;
      14  }