Browse Source

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

git-svn-id: branches/jvmbackend@18560 -
Jonas Maebe 14 years ago
parent
commit
8248e6762f
1 changed files with 2 additions and 1 deletions
  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;
 
 {****************************************************************************}