mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:07:56 +02:00
Also avoid invalid typecast for RegLoadedWithNewValue method for mips, sparcgen and xtensa
git-svn-id: trunk@49186 -
This commit is contained in:
parent
726ac5a5a6
commit
75a9c5b500
@ -206,11 +206,11 @@ unit aoptcpu;
|
||||
var
|
||||
p: taicpu;
|
||||
begin
|
||||
p:=taicpu(hp);
|
||||
result:=false;
|
||||
if not ((assigned(hp)) and (hp.typ=ait_instruction)) then
|
||||
exit;
|
||||
|
||||
p:=taicpu(hp);
|
||||
case p.opcode of
|
||||
{ These instructions do not write into a register at all }
|
||||
A_NOP,
|
||||
|
@ -107,11 +107,11 @@ unit aoptcpu;
|
||||
var
|
||||
p: taicpu;
|
||||
begin
|
||||
p:=taicpu(hp);
|
||||
result:=false;
|
||||
if not ((assigned(hp)) and (hp.typ=ait_instruction)) then
|
||||
exit;
|
||||
|
||||
p:=taicpu(hp);
|
||||
case p.opcode of
|
||||
{ These instructions do not write into a register at all }
|
||||
A_NOP,
|
||||
|
@ -143,11 +143,13 @@ Implementation
|
||||
var
|
||||
p: taicpu;
|
||||
begin
|
||||
p := taicpu(hp);
|
||||
Result := false;
|
||||
if not(assigned(hp) and (hp.typ = ait_instruction) and (p.ops > 0)) then
|
||||
if not(assigned(hp) and (hp.typ = ait_instruction)) then
|
||||
exit;
|
||||
|
||||
p := taicpu(hp);
|
||||
if not (p.ops >0) then
|
||||
exit;
|
||||
case p.opcode of
|
||||
A_B,
|
||||
A_SSI,A_SSIU,A_SSX,A_SSXU,
|
||||
|
Loading…
Reference in New Issue
Block a user