summaryrefslogtreecommitdiff
path: root/rtl/arm
diff options
context:
space:
mode:
authorsergei <sergei@3ad0048d-3df7-0310-abae-a5850022a9f2>2014-03-18 20:01:15 +0000
committersergei <sergei@3ad0048d-3df7-0310-abae-a5850022a9f2>2014-03-18 20:01:15 +0000
commit49e4a079818a64052cf0adeda30e350b60133d65 (patch)
treeac5737aee608923068b0e3b789e05983b790c572 /rtl/arm
parentbdf965f733b51a7f03385360d8ea840e21e27f51 (diff)
downloadfpc-49e4a079818a64052cf0adeda30e350b60133d65.tar.gz
- Removed mathuh.inc files which are identical for all targets (except m68k, see below), their contents moved into math.pp.
+ m68k/mathu.inc: added stub implementations for missing functions. git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@27180 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'rtl/arm')
-rw-r--r--rtl/arm/mathuh.inc27
1 files changed, 0 insertions, 27 deletions
diff --git a/rtl/arm/mathuh.inc b/rtl/arm/mathuh.inc
deleted file mode 100644
index ba922bb09d..0000000000
--- a/rtl/arm/mathuh.inc
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- 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.
-
- **********************************************************************}
-type
- TFPURoundingMode = (rmNearest, rmDown, rmUp, rmTruncate);
- TFPUPrecisionMode = (pmSingle, pmReserved, pmDouble, pmExtended);
- TFPUException = (exInvalidOp, exDenormalized, exZeroDivide,
- exOverflow, exUnderflow, exPrecision);
- TFPUExceptionMask = set of TFPUException;
-
-function GetRoundMode: TFPURoundingMode;
-function SetRoundMode(const RoundMode: TFPURoundingMode): TFPURoundingMode;
-function GetPrecisionMode: TFPUPrecisionMode;
-function SetPrecisionMode(const Precision: TFPUPrecisionMode): TFPUPrecisionMode;
-function GetExceptionMask: TFPUExceptionMask;
-function SetExceptionMask(const Mask: TFPUExceptionMask): TFPUExceptionMask;
-procedure ClearExceptions(RaisePending: Boolean =true);