소스 검색

Avoid warning on non-i386 CPUs

git-svn-id: trunk@19594 -
pierre 13 년 전
부모
커밋
c86e36a53b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/gdbint/src/gdbint.pp

+ 2 - 0
packages/gdbint/src/gdbint.pp

@@ -2658,6 +2658,8 @@ function MaskAllFPUExceptions(control : TFPUState) : TFPUState;
 begin
 {$ifdef cpui386}
   MaskAllFPUExceptions := control or MaskAllExceptions;
+{$else}
+  MaskAllFPUExceptions:=0;
 {$endif}
 end;