Browse Source

* return in param values larger than 16 bits

Nikolay Nikolov 1 year ago
parent
commit
f119fc1146
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/mos6502/cpupara.pas

+ 1 - 1
compiler/mos6502/cpupara.pas

@@ -167,7 +167,7 @@ unit cpupara;
             result:=not(def.size in [1,2,4]);
           }
           else
-            if def.size>4 then
+            if def.size>2 then
               result:=true
             else
               result:=inherited ret_in_param(def,pd);