Browse Source

* allocation strings fixed allocated<->released where exchanged

git-svn-id: trunk@200 -
florian 20 years ago
parent
commit
36dd45fbc3
2 changed files with 2 additions and 2 deletions
  1. 1 1
      compiler/i386/ag386int.pas
  2. 1 1
      compiler/i386/ag386nsm.pas

+ 1 - 1
compiler/i386/ag386int.pas

@@ -341,7 +341,7 @@ implementation
 
     procedure T386IntelAssembler.WriteTree(p:TAAsmoutput);
     const
-      regallocstr : array[tregalloctype] of string[10]=(' released',' allocated',' sync',' resized');
+      regallocstr : array[tregalloctype] of string[10]=(' allocated',' released',' sync',' resized');
       tempallocstr : array[boolean] of string[10]=(' released',' allocated');
     var
       s,

+ 1 - 1
compiler/i386/ag386nsm.pas

@@ -380,7 +380,7 @@ interface
 
     procedure T386NasmAssembler.WriteTree(p:taasmoutput);
     const
-      regallocstr : array[tregalloctype] of string[10]=(' released',' allocated',' sync',' resized');
+      regallocstr : array[tregalloctype] of string[10]=(' allocated',' released',' sync',' resized');
       tempallocstr : array[boolean] of string[10]=(' released',' allocated');
     var
       s : string;