aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr97954.c
blob: 619bed3b40c39876d3abe658ce3809ddd4d17669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR rtl-optimization/97954 */
/* { dg-do compile { target asm_goto_with_outputs } } */
/* { dg-options "-O2" } */

int
foo (void)
{
  int x;
 lab:
  asm goto ("": "=r" (x) : : : lab);
  return x;
}