浏览代码

* small compilation fix

florian 20 年之前
父节点
当前提交
409eec37c3
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. 6 4
      compiler/mips/aasmcpu.pas

+ 6 - 4
compiler/mips/aasmcpu.pas

@@ -2,7 +2,7 @@
     $Id$
     $Id$
     Copyright (c) 2003 by Florian Klaempfl
     Copyright (c) 2003 by Florian Klaempfl
 
 
-    Contains the assembler object for the ARM
+    Contains the assembler object for MIPS
 
 
     This program is free software; you can redistribute it and/or modify
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     it under the terms of the GNU General Public License as published by
@@ -238,7 +238,7 @@ implementation
       begin
       begin
         { allow the register allocator to remove unnecessary moves }
         { allow the register allocator to remove unnecessary moves }
         result:=(((opcode=A_MOVE) and (regtype = R_INTREGISTER)) or
         result:=(((opcode=A_MOVE) and (regtype = R_INTREGISTER)) or
-                 ((opcode=A_MVF) and (regtype = R_FPUREGISTER))
+                 ((opcode=A_MOVF) and (regtype = R_FPUREGISTER))
                 ) and
                 ) and
                 (condition=C_None) and
                 (condition=C_None) and
                 (ops=2) and
                 (ops=2) and
@@ -340,10 +340,12 @@ implementation
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.2  2005-02-14 17:13:10  peter
+  Revision 1.3  2005-03-24 13:30:17  florian
+    * small compilation fix
+
+  Revision 1.2  2005/02/14 17:13:10  peter
     * truncate log
     * truncate log
 
 
   Revision 1.1  2005/02/13 18:56:44  florian
   Revision 1.1  2005/02/13 18:56:44  florian
     + basic mips stuff
     + basic mips stuff
-
 }
 }