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
/
bug1348008.c
blob
5acbedb665e86c36c555eb1aa78f9496ace5f7ae
1
/*
2
bug1348008.c
3
*/
4
5
#include <testfwk.h>
6
7
#ifndef PORT_HOST
8
9
void
10
foo
(
void
)
11
{
12
}
13
14
void
15
IRQ_ISR
(
void
)
__interrupt
16
{
17
foo
();
18
}
19
20
#endif
21
22
void
23
testBug
(
void
)
24
{
25
}