repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
gcc-torture-execute-921019-2.c
blob
d54602c948863a56bf7fe899e3a0c921cadea753
1
/*
2
921019-2.c from the execute part of the gcc torture suite.
3
*/
4
5
#include <testfwk.h>
6
7
#ifdef __SDCC
8
#pragma std_c99
9
#pragma disable_warning 93
10
#endif
11
12
void
13
testTortureExecute
(
void
)
14
{
15
double
x
,
y
=
0.5
;
16
x
=
y
/
0.2
;
17
if
(
x
!=
x
)
18
ASSERT
(
0
);
19
return
;
20
}
21