blob: 6869b034dcf72e47d8a234aeaeebf322e63e594f [file] [log] [blame]
/* PR/18160 */
/* { dg-do compile { target i?86-*-* } } */
/* This should yield an error even without -pedantic. */
/* { dg-options "-ansi" } */
void g(int *);
void f(void)
{
register int x __asm ("eax");
g(&x); /* { dg-error "error: address of register variable" } */
}