浏览代码

* support opcode+operands > 255 characters (e.g. when loading string constants)

git-svn-id: branches/jvmbackend@18560 -
Jonas Maebe 14 年之前
父节点
当前提交
8248e6762f
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      compiler/agjasmin.pas

+ 2 - 1
compiler/agjasmin.pas

@@ -1144,7 +1144,8 @@ implementation
                  sep:=' ';
               end;
           end;
-        owner.AsmWriteLn(s);
+        owner.AsmWritePChar(PChar(s));
+        owner.AsmLn;
       end;
 
 {****************************************************************************}