(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr108596.c
       1  /* PR rtl-optimization/108596 */
       2  
       3  __attribute__((__cold__)) void foo (void);
       4  void bar (void);
       5  
       6  void
       7  baz (void)
       8  {
       9    asm goto ("" : : : : l1, l0);
      10    goto l0;
      11  l1:
      12    bar ();
      13  l0:
      14    foo ();
      15  }
      16  
      17  void
      18  qux (void)
      19  {
      20    asm goto ("" : : : : l1, l0);
      21    __builtin_unreachable ();
      22  l1:
      23    bar ();
      24  l0:
      25    foo ();
      26  }