blob: a5eac8210f4da719136da968d6a2363c49baad26 [file] [log] [blame]
/* { dg-require-effective-target untyped_assembly } */
/* { dg-additional-options "-std=gnu89" } */
foo (a, p)
register int a;
int *p;
{
for (a = 10000000; a >= *p; a--)
;
}
main ()
{
int a;
foo (a, a);
}