Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / register-var-1.C
blob3396d211385a089dbe1c7730ebe686b5f40f12a7
1 /* PR/18160 */
3 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
5 /* This should yield an error even without -pedantic.  */
6 /* { dg-options "-ansi" } */
8 void g(int *);
10 void f(void) 
11
12   register int x __asm ("eax");
13   g(&x);        /* { dg-error "error: address of explicit register variable" } */
14