Browse Source

* brackets around and/or combination

git-svn-id: trunk@25386 -
Jonas Maebe 12 years ago
parent
commit
10bb07a665
1 changed files with 5 additions and 5 deletions
  1. 5 5
      compiler/ncnv.pas

+ 5 - 5
compiler/ncnv.pas

@@ -3587,11 +3587,11 @@ implementation
           are smaller than an entire register }
           are smaller than an entire register }
         if result and
         if result and
            { don't try to check the size of an open array }
            { don't try to check the size of an open array }
-           is_open_array(resultdef) or
-           (resultdef.size<left.resultdef.size) or
-           ((resultdef.size=left.resultdef.size) and
-            (left.resultdef.size<sizeof(aint)) and
-            (is_signed(resultdef) xor is_signed(left.resultdef))) then
+           (is_open_array(resultdef) or
+            (resultdef.size<left.resultdef.size) or
+            ((resultdef.size=left.resultdef.size) and
+             (left.resultdef.size<sizeof(aint)) and
+             (is_signed(resultdef) xor is_signed(left.resultdef)))) then
           make_not_regable(left,[ra_addr_regable]);
           make_not_regable(left,[ra_addr_regable]);
       end;
       end;