소스 검색

* FPU needs reset for all SIGFPE even from integer division by zero

pierre 25 년 전
부모
커밋
997b0d9f5b
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      rtl/linux/syslinux.pp

+ 5 - 2
rtl/linux/syslinux.pp

@@ -709,9 +709,9 @@ begin
                 res:=206
               else
                 res:=207;  {'Coprocessor Error'}
-              ResetFPU;
             end;
 {$endif I386}
+          ResetFPU;
           HandleError(res);
         end;
    11 : HandleError(216);
@@ -808,7 +808,10 @@ End.
 
 {
   $Log$
-  Revision 1.41  2000-03-31 23:21:19  pierre
+  Revision 1.42  2000-03-31 23:26:32  pierre
+   * FPU needs reset for all SIGFPE even from integer division by zero
+
+  Revision 1.41  2000/03/31 23:21:19  pierre
     * multiple exception handling works
       (for linux only if syslinux is compiled with -dnewsignal)