浏览代码

Use sfpu128 unit instead of softfpu, as softfpu does not always has 128-bit support enabled

git-svn-id: trunk@37255 -
pierre 8 年之前
父节点
当前提交
9daa2279f6
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      rtl/inc/ufloat128.pp

+ 2 - 2
rtl/inc/ufloat128.pp

@@ -19,10 +19,10 @@ unit ufloat128;
   interface
 
     uses
-      softfpu;
+      sfpu128;
 
     type
-      float128 = softfpu.float128;
+      float128 = sfpu128.float128;
 
     operator+ (const f1,f2 : float128) result : float128;inline;
     operator* (const f1,f2 : float128) result : float128;inline;