Sfoglia il codice sorgente

* fix taicpu.is_same_reg_move

git-svn-id: trunk@44647 -
florian 5 anni fa
parent
commit
b7374401fd
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  1. 1 2
      compiler/xtensa/aasmcpu.pas

+ 1 - 2
compiler/xtensa/aasmcpu.pas

@@ -416,8 +416,7 @@ uses cutils, cclasses;
           R_FPUREGISTER:
             result:=
                (opcode=A_MOV_S) and
-               (oper[0]^.reg=oper[1]^.reg) and
-               (oper[0]^.reg=oper[2]^.reg);
+               (oper[0]^.reg=oper[1]^.reg);
          else
            result:=false;
         end;