ソースを参照

* return in param values larger than 16 bits

Nikolay Nikolov 1 年間 前
コミット
f119fc1146
1 ファイル変更1 行追加1 行削除
  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);