sh: Remove implicit sign extension from assembler immediates
The SH instruction set has several instructions which accept an 8 bit immediate operand. For logical instructions this operand is zero extended, for arithmetic instructions the operand is sign extended. After adding an option to the assembler to check this, it was found that several pieces of assembly code were assuming this behaviour, and in one case getting it wrong. So this patch explicitly sign extends any immediate operands, which makes it obvious what is happening, and fixes the one case which got it wrong. Signed-off-by: Stuart Menefy <stuart.menefy@st.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
committed by
Paul Mundt
parent
d724a9c9d5
commit
fea966f756
@ -22,7 +22,7 @@ startup:
|
||||
bt clear_bss
|
||||
sub r0, r2
|
||||
mov.l bss_start_addr, r0
|
||||
mov #0xe0, r1
|
||||
mov #0xffffffe0, r1
|
||||
and r1, r0 ! align cache line
|
||||
mov.l text_start_addr, r3
|
||||
mov r0, r1
|
||||
|
Reference in New Issue
Block a user