From 6fa03915586a52de277e922dfb8f2ded8c834ffa Mon Sep 17 00:00:00 2001 From: peter Date: Fri, 3 Dec 2004 15:57:11 +0000 Subject: [PATCH] * fix for 1.9.4 that IE'd when rebuilding fpc --- compiler/aasmbase.pas | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/compiler/aasmbase.pas b/compiler/aasmbase.pas index 5b348339aa..a519efcc96 100644 --- a/compiler/aasmbase.pas +++ b/compiler/aasmbase.pas @@ -153,7 +153,7 @@ interface TAsmObjectData = class(TLinkedListItem) private - FName : string[80]; + FName : string{$ifndef VER1_9_4}[80]{$endif}; FCurrSec : TAsmSection; FSects : TDictionary; FCAsmSection : TAsmSectionClass; @@ -191,7 +191,7 @@ interface procedure afterwrite;virtual; procedure resetsections; procedure fixuprelocs; - property Name:string[80] read FName; + property Name:string{$ifndef VER1_9_4}[80]{$endif} read FName; property CurrSec:TAsmSection read FCurrSec; property Symbols:TindexArray read FSymbols; property Sects:TDictionary read FSects; @@ -941,7 +941,10 @@ implementation end. { $Log$ - Revision 1.24 2004-11-01 23:30:11 peter + Revision 1.25 2004-12-03 15:57:11 peter + * fix for 1.9.4 that IE'd when rebuilding fpc + + Revision 1.24 2004/11/01 23:30:11 peter * support > 32bit accesses for x86_64 * rewrote array size checking to support 64bit