mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 09:07:59 +02:00
AArch64: X18 is not a volatile register
It may be unused on some platforms, but in general it's reserved for OS library usage (usually related to TLS)
This commit is contained in:
parent
49fb1b4c29
commit
cd8ddffe42
@ -127,7 +127,7 @@ unit cpubase;
|
||||
{$i ra64dwa.inc}
|
||||
);
|
||||
{ registers which may be destroyed by calls }
|
||||
VOLATILE_INTREGISTERS = [RS_X0..RS_X18,RS_X30];
|
||||
VOLATILE_INTREGISTERS = [RS_X0..RS_X17,RS_X30];
|
||||
VOLATILE_MMREGISTERS = [RS_D0..RS_D7,RS_D16..RS_D31];
|
||||
|
||||
{*****************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user