* fixed make cycle

This commit is contained in:
florian 2003-09-24 21:15:49 +00:00
parent cedff1a593
commit f6e456268f

View File

@ -1284,9 +1284,15 @@ implementation
function regval(r:Tregister):byte;
const
{$ifdef x86_64}
opcode_table:array[tregisterindex] of tregisterindex = (
{$i r8664op.inc}
);
{$else x86_64}
opcode_table:array[tregisterindex] of tregisterindex = (
{$i r386op.inc}
);
{$endif x86_64}
begin
result:=opcode_table[findreg_by_number(r)];
end;
@ -2256,7 +2262,10 @@ implementation
end.
{
$Log$
Revision 1.25 2003-09-24 17:12:36 florian
Revision 1.26 2003-09-24 21:15:49 florian
* fixed make cycle
Revision 1.25 2003/09/24 17:12:36 florian
* x86-64 adaptions
Revision 1.24 2003/09/23 17:56:06 peter