Explorar el Código

* separate Jasmin operands by space instead of by ","

git-svn-id: branches/jvmbackend@18353 -
Jonas Maebe hace 14 años
padre
commit
b5e7989a06
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      compiler/agjasmin.pas

+ 1 - 1
compiler/agjasmin.pas

@@ -874,7 +874,7 @@ implementation
             for i:=0 to taicpu(hp).ops-1 do
               begin
                  s:=s+sep+getopstr(taicpu(hp).oper[i]^);
-                 sep:=',';
+                 sep:=' ';
               end;
           end;
         owner.AsmWriteLn(s);