(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
pr95237-5.c
       1  /* { dg-do compile { target ia32 } } */
       2  /* { dg-options "-mpreferred-stack-boundary=2 -Os -w" { target { i?86-*-* x86_64-*-* } } } */
       3  
       4  int a;
       5  
       6  long long __attribute__((noinline))
       7  b (void)
       8  {
       9  }
      10  
      11  void
      12  c (void)
      13  {
      14    if (b())
      15      a = 1;
      16  }