URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [register-var-1.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR/18160 */ /* { dg-do compile { target i?86-*-* x86_64-*-* } } */ /* This should yield an error even without -pedantic. */ /* { dg-options "-ansi" } */ void g(int *); void f(void) { register int x __asm ("eax"); g(&x); /* { dg-error "error: address of register variable" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log