Browse Source

* fix taicpu.is_same_reg_move

git-svn-id: trunk@44647 -
florian 5 years ago
parent
commit
b7374401fd
1 changed files with 1 additions and 2 deletions
  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;