aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/register-var-2.c
blob: 01816d5f4251e66c8a9ac32c2aca58946b83b44f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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" } */
}