From 6e18d537fc76b80c63e2d83a3702313369e46f7c Mon Sep 17 00:00:00 2001 From: pierre Date: Wed, 26 Jul 2017 14:56:11 +0000 Subject: [PATCH] Use A_LD_R and A_ST_R aliases for spilling_create_(load|store) functions git-svn-id: trunk@36793 - --- compiler/sparcgen/aasmcpu.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sparcgen/aasmcpu.pas b/compiler/sparcgen/aasmcpu.pas index 8cb5ca9646..eabeb487bc 100644 --- a/compiler/sparcgen/aasmcpu.pas +++ b/compiler/sparcgen/aasmcpu.pas @@ -274,7 +274,7 @@ implementation begin case getregtype(r) of R_INTREGISTER : - result:=taicpu.op_ref_reg(A_LD,ref,r); + result:=taicpu.op_ref_reg(A_LD_R,ref,r); R_FPUREGISTER : begin case getsubreg(r) of @@ -296,7 +296,7 @@ implementation begin case getregtype(r) of R_INTREGISTER : - result:=taicpu.op_reg_ref(A_ST,r,ref); + result:=taicpu.op_reg_ref(A_ST_R,r,ref); R_FPUREGISTER : begin case getsubreg(r) of