Add A_ST_R and A_LD_R instruction alias for whole register size store/load

git-svn-id: trunk@36792 -
This commit is contained in:
pierre 2017-07-26 14:53:30 +00:00
parent dc0e8de99f
commit f5dfbb5ff3

View File

@ -92,6 +92,10 @@ uses
regdwarf_table : array[tregisterindex] of ShortInt = (
{$i rspdwrf.inc}
);
{ Aliases for full register LoadStore instructions }
A_ST_R = A_ST;
A_LD_R = A_LD;
{$endif SPARC}
{$ifdef SPARC64}
@ -131,6 +135,9 @@ uses
regdwarf_table : array[tregisterindex] of ShortInt = (
{$i rsp64dwrf.inc}
);
{ Aliases for full register LoadStore instructions }
A_ST_R = A_STX;
A_LD_R = A_LDX;
{$endif SPARC64}
{*****************************************************************************