In avr-gcc, the destination of rjmp label+offset is address
label+offset, while destination of rjmp .+offset is address_of_rjmp+offset+2.
Clang is in accordance with avr-gcc for rjmp label+offset, but
emits the destination of rjmp .+offset to address_of_rjmp+offset.
This patch fixes the above issue.
relative jump to the next instruction.