mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 11:28:06 +02:00
* RiscV: fixing spilling_get_operation_tpye for LI
This commit is contained in:
parent
326356e8e9
commit
5a07867d20
@ -490,7 +490,7 @@ uses cutils, cclasses;
|
||||
|
||||
// I type
|
||||
A_JALR,
|
||||
A_LA,A_LB,A_LH,A_LW,A_LBU,A_LHU,
|
||||
A_LA,A_LB,A_LH,A_LW,A_LBU,A_LHU,A_LI,
|
||||
A_ADDI,A_SLTI,A_SLTIU,
|
||||
A_XORI,A_ORI,A_ANDI,
|
||||
A_SLLI,A_SRLI,A_SRAI,
|
||||
@ -506,13 +506,6 @@ uses cutils, cclasses;
|
||||
else
|
||||
result:=operand_read;
|
||||
|
||||
A_FLW,
|
||||
A_FLD:
|
||||
if opnr=0 then
|
||||
result:=operand_write
|
||||
else
|
||||
result:=operand_read;
|
||||
|
||||
// SB type
|
||||
A_Bxx:
|
||||
result:=operand_read;
|
||||
@ -546,7 +539,9 @@ uses cutils, cclasses;
|
||||
A_FMIN_D,A_FMAX_D,
|
||||
A_FEQ_D,A_FLT_D,A_FLE_D,A_FCLASS_D,
|
||||
A_FCVT_D_S,A_FCVT_S_D,
|
||||
A_FCVT_W_D,A_FCVT_WU_D,A_FCVT_D_W,A_FCVT_D_WU:
|
||||
A_FCVT_W_D,A_FCVT_WU_D,A_FCVT_D_W,A_FCVT_D_WU,
|
||||
A_FLW,
|
||||
A_FLD:
|
||||
if opnr=0 then
|
||||
result:=operand_write
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user