From 2fb059e28959a79aee385ffb3a38c9c4a6b3d8f5 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 22 Dec 2003 23:10:21 +0000 Subject: [PATCH] * use low(longint) instead of $8000000 --- compiler/cgbase.pas | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/compiler/cgbase.pas b/compiler/cgbase.pas index 55fc777e1b..11c7e29b95 100644 --- a/compiler/cgbase.pas +++ b/compiler/cgbase.pas @@ -141,8 +141,8 @@ interface with TSuperRegister to avoid mixing them } TRegister = ( - TRegisterLowEnum := $80000000, - TRegisterHighEnum := $7fffffff + TRegisterLowEnum := Low(longint), + TRegisterHighEnum := High(longint) ); TRegisterRec=packed record {$ifdef FPC_BIG_ENDIAN} @@ -587,7 +587,10 @@ finalization end. { $Log$ - Revision 1.81 2003-12-21 19:42:42 florian + Revision 1.82 2003-12-22 23:10:21 peter + * use low(longint) instead of $8000000 + + Revision 1.81 2003/12/21 19:42:42 florian * fixed ppc inlining stuff * fixed wrong unit writing + added some sse stuff