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
testsuite: pru: Fix pr64366.c for new -std=gnu23 default
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
990117-1.c
blob
c390ea4c31e96608372e56edc1adac2ac976fcc4
1
void
abort
(
void
);
2
3
int
4
foo
(
int
x
,
int
y
,
int
i
,
int
j
)
5
{
6
double
tmp1
= ((
double
)
x
/
y
);
7
double
tmp2
= ((
double
)
i
/
j
);
8
9
return
tmp1
<
tmp2
;
10
}
11
12
int
13
main
(
void
)
14
{
15
if
(
foo
(
2
,
24
,
3
,
4
) ==
0
)
16
abort
();
17
return
0
;
18
}
19