repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove outermost loop parameter.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
970923-1.c
blob
1d78b47c724b8d5e30645369939614fdbd30fb98
1
int
2
ts
(
a
)
3
int
a
;
4
{
5
if
(
a
<
1000
&&
a
>
2000
)
6
return
1
;
7
else
8
return
0
;
9
}
10
11
int
12
tu
(
a
)
13
unsigned int
a
;
14
{
15
if
(
a
<
1000
&&
a
>
2000
)
16
return
1
;
17
else
18
return
0
;
19
}
20
21
22
main
()
23
{
24
if
(
ts
(
0
) ||
tu
(
0
))
25
abort
();
26
exit
(
0
);
27
}