Browse Source

+ FP/LR register aliases

git-svn-id: trunk@29851 -
Jonas Maebe 10 years ago
parent
commit
51a094a917
1 changed files with 10 additions and 0 deletions
  1. 10 0
      compiler/aarch64/cpubase.pas

+ 10 - 0
compiler/aarch64/cpubase.pas

@@ -250,6 +250,16 @@ unit cpubase;
 *****************************************************************************}
 
 
+      NR_FP = NR_X29;
+      RS_FP = RS_X29;
+      NR_WFP = NR_W29;
+      RS_WFP = RS_W29;
+
+      NR_LR = NR_X30;
+      RS_LR = RS_X30;
+      NR_WLR = NR_W30;
+      RS_WLR = RS_W30;
+
       { Stack pointer register }
       NR_STACK_POINTER_REG = NR_SP;
       RS_STACK_POINTER_REG = RS_SP;