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
/
gcc-torture-execute-inst-check.c
blob
d22ababde7bba8224d9bacf757d61d86ffaaa15a
1
/*
2
inst-check.c from the execute part of the gcc torture tests.
3
*/
4
5
#include <testfwk.h>
6
7
#include <stdarg.h>
8
9
#if 0
// TODO: EMable when SDCC supports K&R-style
10
f
(
m
)
11
{
12
int
i
,
s
=
0
;
13
for
(
i
=
0
;
i
<
m
;
i
++)
14
s
+=
i
;
15
return
s
;
16
}
17
#endif
18
19
void
20
testTortureExecute
(
void
)
21
{
22
return
;
23
}