Explorar o código

* clean up

git-svn-id: trunk@45735 -
florian %!s(int64=5) %!d(string=hai) anos
pai
achega
3655c46982
Modificáronse 1 ficheiros con 1 adicións e 7 borrados
  1. 1 7
      compiler/utils/mkarmins.pp

+ 1 - 7
compiler/utils/mkarmins.pp

@@ -81,7 +81,7 @@ function formatop(s:string):string;
   var
     i : longint;
   begin
-    for i:=1to replaces do
+    for i:=1 to replaces do
      replace(s,replacetab[i,1],replacetab[i,2]);
     formatop:=s;
   end;
@@ -199,10 +199,6 @@ begin
    assign(nopfile,'armnop.inc');
    openinc(attfile,'armatt.inc');
    openinc(attsuffile,'armatts.inc');
-   {
-   openinc(intfile,'i386int.inc');
-   openinc(propfile,'i386prop.inc');
-   }
    rewrite(nopfile);
    writeln(nopfile,'{ don''t edit, this file is generated from armins.dat }');
    reset(infile);
@@ -275,7 +271,6 @@ begin
               writeln(opfile,',');
               writeln(attfile,',');
               writeln(attsuffile,',');
-{              writeln(propfile,','); }
             end;
            write(opfile,opcode);
            write(attfile,'''',attopcode,'''');
@@ -401,6 +396,5 @@ begin
    closeinc(opfile);
    writeln(nopfile,insns,';');
    close(nopfile);
-{   closeinc(propfile); }
    writeln(insns,' nodes processed (maxinfolen=',maxinfolen,')');
 end.