Browse Source

+ dummy AArch64 cpupi unit

git-svn-id: trunk@29905 -
Jonas Maebe 10 years ago
parent
commit
cfd7bfc8a5
2 changed files with 45 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 44 0
      compiler/aarch64/cpupi.pas

+ 1 - 0
.gitattributes

@@ -23,6 +23,7 @@ compiler/aarch64/cpubase.pas svneol=native#text/plain
 compiler/aarch64/cpuinfo.pas svneol=native#text/plain
 compiler/aarch64/cpunode.pas svneol=native#text/plain
 compiler/aarch64/cpupara.pas svneol=native#text/plain
+compiler/aarch64/cpupi.pas svneol=native#text/plain
 compiler/aarch64/itcpugas.pas svneol=native#text/plain
 compiler/aarch64/ncpuadd.pas svneol=native#text/plain
 compiler/aarch64/ncpucnv.pas svneol=native#text/plain

+ 44 - 0
compiler/aarch64/cpupi.pas

@@ -0,0 +1,44 @@
+{
+    Copyright (c) 2002 by Florian Klaempfl
+
+    This unit contains the CPU specific part of tprocinfo
+
+    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
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ ****************************************************************************
+}
+unit cpupi;
+
+{$i fpcdefs.inc}
+
+interface
+
+  uses
+    psub;
+
+  type
+    taarch64procinfo=class(tcgprocinfo)
+      { no need to override anything, as the ABI requires us to use a frame
+        pointer at all times }
+    end;
+
+implementation
+
+  uses
+    procinfo;
+
+begin
+  cprocinfo:=taarch64procinfo;
+end.