Minimalist change to avoid Invalid Typecast error on class when compiled with '-CriotR -O2' for i386-go32v2 target

git-svn-id: trunk@43565 -
This commit is contained in:
pierre 2019-11-23 22:44:30 +00:00
parent f7d6192905
commit c882828fd0

View File

@ -94,6 +94,8 @@ unit aoptcpu;
p := tai(p.next);
Result:=true;
end;
if not (p is taicpu) then
exit;
case taicpu(p).opcode Of
A_IMUL:
Result:=PrePeepholeOptIMUL(p);