From 1150f7e9dcfb9ed478c61f33f65964e4afb4edf5 Mon Sep 17 00:00:00 2001
From: Jonas Maebe <jonas@freepascal.org>
Date: Wed, 18 Jun 2008 18:02:33 +0000
Subject: [PATCH]   * reduced complexity of in_abs_long, old value was left
 over from testing

git-svn-id: trunk@11243 -
---
 compiler/nutils.pas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler/nutils.pas b/compiler/nutils.pas
index 997ac2a7ce..3dfcf97dec 100644
--- a/compiler/nutils.pas
+++ b/compiler/nutils.pas
@@ -742,7 +742,7 @@ implementation
                       end;
                     in_abs_long:
                       begin
-                        inc(result,10);
+                        inc(result,3);
                         if (result >= NODE_COMPLEXITY_INF) then
                           begin
                             result:=NODE_COMPLEXITY_INF;