Browse Source

* fixed case for ppc64 with 64 bit values

git-svn-id: trunk@5461 -
Jonas Maebe 18 years ago
parent
commit
f4cb8c1bef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/ppcgen/ngppcset.pas

+ 1 - 1
compiler/ppcgen/ngppcset.pas

@@ -216,7 +216,7 @@ implementation
       begin
       begin
          { do we need to generate cmps? }
          { do we need to generate cmps? }
          if (with_sign and (min_label<0)) or
          if (with_sign and (min_label<0)) or
-            (opsize = OS_INT) then
+            (opsize in [OS_32,OS_64,OS_S64]) then
            genlinearcmplist(hp)
            genlinearcmplist(hp)
          else
          else
            begin
            begin