Kaynağa Gözat

* compilation on arm fixed

florian 21 yıl önce
ebeveyn
işleme
7b5dc40284
3 değiştirilmiş dosya ile 54 ekleme ve 6 silme
  1. 22 0
      rtl/arm/mathu.inc
  2. 22 0
      rtl/arm/mathuh.inc
  3. 10 6
      rtl/inc/systemh.inc

+ 22 - 0
rtl/arm/mathu.inc

@@ -0,0 +1,22 @@
+{
+    $Id$
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2004 by Florian Klaempfl
+    member of the Free Pascal development team
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    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.
+
+ **********************************************************************}
+{
+  $Log$
+  Revision 1.1  2004-01-26 11:48:24  florian
+    * compilation on arm fixed
+
+  Revision 1.1  2003/04/24 09:14:22  florian
+    * initial implementation
+}

+ 22 - 0
rtl/arm/mathuh.inc

@@ -0,0 +1,22 @@
+{
+    $Id$
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2004 by Florian Klaempfl
+    member of the Free Pascal development team
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    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.
+
+ **********************************************************************}
+{
+  $Log$
+  Revision 1.1  2004-01-26 11:48:24  florian
+    * compilation on arm fixed
+
+  Revision 1.1  2003/04/24 09:14:22  florian
+    * initial implementation
+}

+ 10 - 6
rtl/inc/systemh.inc

@@ -135,7 +135,7 @@ Type
   ValUInt = Cardinal;
   ValReal = Double;
 
-  { map comp to int64, but this doesn't mean to compile the comp support in! }
+  { map comp to int64, but this doesn't mean we compile the comp support in! }
   Comp = Int64;
   PComp = ^Comp;
 {$endif CPUPOWERPC}
@@ -150,7 +150,7 @@ Type
   ValUInt = Cardinal;
   ValReal = Double;
 
-  { map comp to int64, but this doesn't mean to compile the comp support in! }
+  { map comp to int64, but this doesn't mean we compile the comp support in! }
   Comp = Int64;
   PComp = ^Comp;
 {$endif CPUSPARC}
@@ -169,8 +169,9 @@ Type
   ValUInt = Cardinal;
   ValReal = Real;
 
-  { Comp type does not exist on fpu }
-  Comp    = int64;
+  { map comp to int64, but this doesn't mean we compile the comp support in! }
+  Comp = Int64;
+  PComp = ^Comp;
 {$endif CPUARM}
 
 {$ifdef CPU64}
@@ -720,7 +721,10 @@ const
 
 {
   $Log$
-  Revision 1.82  2004-01-20 23:13:53  hajny
+  Revision 1.83  2004-01-26 11:48:24  florian
+    * compilation on arm fixed
+
+  Revision 1.82  2004/01/20 23:13:53  hajny
     * ExecuteProcess fixes, ProcessID and ThreadID added
 
   Revision 1.81  2003/12/29 19:24:12  florian
@@ -872,4 +876,4 @@ const
       instead of direct comparisons of low/high values of orddefs because
       qword is a special case
 
-}
+}