struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-3636.c
blob5c74dfcf807fba4120ab828c5c6eefb60c20030c
1 /* bug-3626.c
2 The Rabbit assembler failed to assemble some Rabbit instructions not used by the compiler.
3 */
5 #include <testfwk.h>
7 void
8 f (void)
10 #if defined(__SDCC_r2k) || defined(__SDCC_r2ka) || defined(__SDCC_r3ka)
11 __asm__ ("ex de', hl");
12 __asm__ ("ld bc', bc");
14 __asm__ ("ld de', bc");
15 __asm__ ("ld hl', bc");
17 __asm__ ("ld bc', de");
18 __asm__ ("ld de', de");
19 __asm__ ("ld hl', de");
20 #endif
23 void
24 testBug (void)