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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-499644.c
blob
f0d18fa3b0491957cc073b307d37ad7d582b0826
1
/* Floats
2
*/
3
#include <testfwk.h>
4
5
const float
a
=
0.0
;
6
7
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15)
// Lack of memory
8
float
f
(
void
)
9
{
10
return
a
*
5
;
11
}
12
#endif
13
14
void
testBug
(
void
)
15
{
16
}