aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr84682-2.c
blob: f8d15c5e6a39644d12c91db0f7502124dc59ce5d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-skip-if "impossible register constraint" { "avr-*-*" } } */

int a;
void b() {
  float c;
  for (int d; d;)
    ;
  a = c;
  asm("" : : "pir"(c));
}