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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20050122-2.c
blob
d73f6243ddd5147b8c461e9242dfa0b30d0b5a00
1
/* Related to PR 19484. */
2
extern
void
foo
(
void
)
__attribute__
((
noreturn
));
3
int
n
;
4
5
void
6
g
(
void
)
7
{
8
__label__ lab
;
9
void
h
(
void
) {
if
(
n
==
2
)
goto
lab
; }
10
void
(*
f1
) (
void
) =
foo
;
11
void
(*
f2
) (
void
) =
h
;
12
13
f2
();
14
if
(
n
)
15
f1
();
16
n
=
1
;
17
lab
:
18
n
++;
19
}