repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
register-var-2.c
blob
585dfe2bb62bf002822a3f3c1049a2b18b163bb7
1
/* PR/18160 */
2
3
/* { dg-do compile } */
4
5
/* This should yield an error even without -pedantic. */
6
/* { dg-options "-ansi" } */
7
8
void
g
(
int
*);
9
10
void
f
(
void
)
11
{
12
register
int
x
;
13
g
(&
x
);
/* { dg-error "error: address of register variable" } */
14
}