소스 검색

Check that tai returned by GetNextInstruction is really a taicpu object before using an explicit typecast

Pierre Muller 1 년 전
부모
커밋
d53af12a6d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/x86/aoptx86.pas

+ 1 - 1
compiler/x86/aoptx86.pas

@@ -4535,7 +4535,7 @@ unit aoptx86;
                       end
                     else if (taicpu(hp2).oper[0]^.typ = top_ref) and
                       GetNextInstruction(hp2, hp4) and
-                      (taicpu(hp4).opcode = A_MOV) then
+                      (hp4 is taicpu) and (taicpu(hp4).opcode = A_MOV) then
                       { Optimise the following first:
                           movl [mem1],reg1
                           movl [mem1],reg2