* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / register-var-1.c
bloba27d56c4b6695a63c7c79f15a27cd1fd4c68eb5c
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)
12 register int x __asm ("eax");
13 g(&x); /* { dg-error "error: address of register variable" } */