aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr100590.c
blob: 8d1e1a0d3064f3bfaf867d4258c8ecd677be4649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR rtl-optimization/100590 */
/* { dg-do compile { target lra } } */
/* { dg-options "-O1 -fno-dce -w" } */

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