* src/mcs51/peep.c (isCallerSaveFunc): fixed bug 1749275, thanks Robert
[fw/sdcc] / support / regression / tests / bug1348008.c
1 /*
2    bug1348008.c
3 */
4
5 #include <testfwk.h>
6
7 #ifndef PORT_HOST
8
9 void foo(void) { }
10
11 void IRQ_ISR(void) interrupt
12 {
13   foo();
14 }
15
16 #endif