Browse Source

m68k: cleaned up some ancient mess from cpunode.pas, no significant functional change, apart from unit inclusion order

git-svn-id: trunk@49187 -
Károly Balogh 4 years ago
parent
commit
c8e712f400
1 changed files with 11 additions and 16 deletions
  1. 11 16
      compiler/m68k/cpunode.pas

+ 11 - 16
compiler/m68k/cpunode.pas

@@ -30,25 +30,20 @@ unit cpunode;
     uses
     uses
        { generic nodes }
        { generic nodes }
        ncgbas,ncgld,ncgflw,ncgcnv,ncgmem,ncgcon,ncgcal,ncgset,ncginl,ncgmat,ncgadd,
        ncgbas,ncgld,ncgflw,ncgcnv,ncgmem,ncgcon,ncgcal,ncgset,ncginl,ncgmat,ncgadd,
+       { symtable }
+       symcpu,
+       aasmdef,
        { to be able to only parts of the generic code,
        { to be able to only parts of the generic code,
          the processor specific nodes must be included
          the processor specific nodes must be included
          after the generic one (FK)
          after the generic one (FK)
        }
        }
-         n68kadd,
-         n68kcal,
-//       nppccon,
-//       nppcflw,
-         n68kmem,
-         n68kset,
-         n68kinl,
-//       nppcopt,
-       { this not really a node }
-//       nppcobj,
-         n68kmat,
-         n68kcnv,
-         { symtable }
-         symcpu,
-         aasmdef
-         ;
+       n68kadd,
+       n68kcal,
+       n68kmem,
+       n68kset,
+       n68kinl,
+       n68kmat,
+       n68kcnv
+       ;
 
 
 end.
 end.