Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / register-var-2.C
blob28f5df0cf52c5f5516560a564ae3d9dda672fab2
1 /* PR/18160 */
3 /* { dg-do compile } */
5 /* This should yield an error even without -pedantic.  */
6 /* { dg-options "-Wall -W" } */
8 void g(int *);
10 void f(void) 
11
12   register int x;
13   g(&x); /* { dg-warning "address requested for 'x', which is declared 'register'" } */
14