From 36dd45fbc3f0baf8666ceb6b193ce178facfd051 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 5 Jun 2005 07:47:28 +0000 Subject: [PATCH] * allocation strings fixed allocated<->released where exchanged git-svn-id: trunk@200 - --- compiler/i386/ag386int.pas | 2 +- compiler/i386/ag386nsm.pas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/i386/ag386int.pas b/compiler/i386/ag386int.pas index 7367d092a9..56f7381a7e 100644 --- a/compiler/i386/ag386int.pas +++ b/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, diff --git a/compiler/i386/ag386nsm.pas b/compiler/i386/ag386nsm.pas index 7e7f4749c2..c814221251 100644 --- a/compiler/i386/ag386nsm.pas +++ b/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;