Browse Source

* fixed indentation of stack slot allocation debug statements

git-svn-id: trunk@26474 -
Jonas Maebe 11 years ago
parent
commit
8065fc24d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/jvm/hlcgcpu.pas

+ 1 - 1
compiler/jvm/hlcgcpu.pas

@@ -271,7 +271,7 @@ implementation
       if (fevalstackheight>fmaxevalstackheight) then
         fmaxevalstackheight:=fevalstackheight;
       if cs_asm_regalloc in current_settings.globalswitches then
-        list.concat(tai_comment.Create(strpnew('allocated '+tostr(slots)+', stack height = '+tostr(fevalstackheight))));
+        list.concat(tai_comment.Create(strpnew('    allocated '+tostr(slots)+', stack height = '+tostr(fevalstackheight))));
     end;
 
   procedure thlcgjvm.decstack(list: TAsmList;slots: longint);