summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaroly <karoly@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-04-12 09:33:51 +0000
committerkaroly <karoly@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-04-12 09:33:51 +0000
commit4b9f98148ad04e3ce2e1b3f68c8d29b3d4dbb83b (patch)
treec0dd3a8821223f0924678bee288ff2586aae37a7
parent8068d123769b4dcc2cdba6733662cf26faede42f (diff)
downloadfpc-4b9f98148ad04e3ce2e1b3f68c8d29b3d4dbb83b.tar.gz
m68k: cleaned up some ancient mess from cpunode.pas, no significant functional change, apart from unit inclusion order
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@49187 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/m68k/cpunode.pas27
1 files changed, 11 insertions, 16 deletions
diff --git a/compiler/m68k/cpunode.pas b/compiler/m68k/cpunode.pas
index 4cdfef41af..e02c46d8ad 100644
--- a/compiler/m68k/cpunode.pas
+++ b/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.