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
/
execute
/
20010403-1.c
blob
6a8f2a4242ceee52faa2ce1caa2bff5e86bf24a8
1
void
b
(
int
*);
2
void
c
(
int
,
int
);
3
void
d
(
int
);
4
5
int
e
;
6
7
void
a
(
int
x
,
int
y
)
8
{
9
int
f
=
x
?
e
:
0
;
10
int
z
=
y
;
11
12
b
(&
y
);
13
c
(
z
,
y
);
14
d
(
f
);
15
}
16
17
void
b
(
int
*
y
)
18
{
19
(*
y
)++;
20
}
21
22
void
c
(
int
x
,
int
y
)
23
{
24
if
(
x
==
y
)
25
abort
();
26
}
27
28
void
d
(
int
x
)
29
{
30
}
31
32
int
main
(
void
)
33
{
34
a
(
0
,
0
);
35
exit
(
0
);
36
}