Browse Source

* Activated again workaround of dead code warnings on (errorcode > maxExitCode) condition.

git-svn-id: trunk@9537 -
yury 17 years ago
parent
commit
a2daf2e86d
1 changed files with 8 additions and 8 deletions
  1. 8 8
      rtl/inc/system.inc

+ 8 - 8
rtl/inc/system.inc

@@ -12,14 +12,6 @@
 
  **********************************************************************}
 
-{$ifdef FPC_OBJFPC_EXTENDED_IF}
-//  {$if High(errorcode)<>maxExitCode}
-    {$define FPC_LIMITED_EXITCODE}
-//  {$endif}
-{$else}
-  {$define FPC_LIMITED_EXITCODE}
-{$endif FPC_OBJFPC_EXTENDED_IF}
-
 {****************************************************************************
                                 Local types
 ****************************************************************************}
@@ -33,6 +25,14 @@
 {$i filerec.inc}
 {$i textrec.inc}
 
+{$ifdef FPC_OBJFPC_EXTENDED_IF}
+  {$if High(errorcode)<>maxExitCode}
+    {$define FPC_LIMITED_EXITCODE}
+  {$endif}
+{$else}
+  {$define FPC_LIMITED_EXITCODE}
+{$endif FPC_OBJFPC_EXTENDED_IF}
+
 Procedure HandleError (Errno : Longint); forward;
 Procedure HandleErrorFrame (Errno : longint;frame : Pointer); forward;