aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/register-var-2.C
blob: 28f5df0cf52c5f5516560a564ae3d9dda672fab2 (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 "-Wall -W" } */

void g(int *);

void f(void) 
{ 
  register int x;
  g(&x); /* { dg-warning "address requested for 'x', which is declared 'register'" } */
}