rt_gccstream/gcc/testsuite/gcc.dg/register-var-2.c

15 lines
242 B
C

/* PR/18160 */
/* { dg-do compile } */
/* This should yield an error even without -pedantic. */
/* { dg-options "-ansi" } */
void g(int *);
void f(void)
{
register int x;
g(&x); /* { dg-error "address of register variable" } */
}