瀏覽代碼

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 年之前
父節點
當前提交
c8e712f400
共有 1 個文件被更改,包括 11 次插入16 次删除
  1. 11 16
      compiler/m68k/cpunode.pas

+ 11 - 16
compiler/m68k/cpunode.pas

@@ -30,25 +30,20 @@ unit cpunode;
     uses
        { generic nodes }
        ncgbas,ncgld,ncgflw,ncgcnv,ncgmem,ncgcon,ncgcal,ncgset,ncginl,ncgmat,ncgadd,
+       { symtable }
+       symcpu,
+       aasmdef,
        { to be able to only parts of the generic code,
          the processor specific nodes must be included
          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.