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
PR middle-end/30262
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000706-3.c
blob
b5758d9abb01ffc77572d042477a85ec6227864b
1
extern
void
abort
(
void
);
2
extern
void
exit
(
int
);
3
4
int
c
;
5
6
void
baz
(
int
*
p
)
7
{
8
c
= *
p
;
9
}
10
11
void
bar
(
int
b
)
12
{
13
if
(
c
!=
1
||
b
!=
2
)
14
abort
();
15
}
16
17
void
foo
(
int
a
,
int
b
)
18
{
19
baz
(&
a
);
20
bar
(
b
);
21
}
22
23
int
main
()
24
{
25
foo
(
1
,
2
);
26
exit
(
0
);
27
}