1# Test the FILL-SLOT attribute. 2# The FILL-SLOT attribute ensures the next insn begins on a 32 byte boundary. 3# This is needed for example with bl because the subroutine will return 4# to a 32 bit boundary. 5 6 .text 7bl: 8 bl bl 9 ldi r0,#8 10bl_s: 11 bl.s bl_s 12 ldi r0,#8 13 14bra: 15 bra bra 16 ldi r0,#8 17bra_s: 18 bra.s bra_s 19 ldi r0,#8 20 21jl: 22 jl r0 23 ldi r0,#8 24 25trap: 26 trap #4 27 ldi r0,#8 28