mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 04:18:31 +02:00
* patch by Pierre to fix spilling and jump handling of pseudo-instructions
This commit is contained in:
parent
282f4aa060
commit
425ef662cc
@ -507,7 +507,8 @@ uses cutils, cclasses;
|
||||
result:=operand_read;
|
||||
|
||||
// SB type
|
||||
A_Bxx:
|
||||
A_BEQZ,A_BNEZ,A_BLEZ,A_BGEZ,A_BLTZ,A_BGTZ,A_BGT,A_BLE,
|
||||
A_BGTU,A_BLEU,A_Bxx:
|
||||
result:=operand_read;
|
||||
|
||||
// S type
|
||||
|
@ -552,6 +552,8 @@ implementation
|
||||
begin
|
||||
is_calljmp:=false;
|
||||
case o of
|
||||
A_BEQZ,A_BNEZ,A_BLEZ,A_BGEZ,A_BLTZ,A_BGTZ,A_BGT,A_BLE,
|
||||
A_BGTU,A_BLEU,A_J,A_JR,
|
||||
A_JAL,A_JALR,A_Bxx,A_CALL:
|
||||
is_calljmp:=true;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user