From a9c67f22fd3c74fcdf352f11ebe861d0f526710a Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Fri, 4 Feb 2022 22:51:55 +0000 Subject: [PATCH] Add use of SD instruction in tcgmips.a_load_reg_ref method --- compiler/mips/cgcpu.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler/mips/cgcpu.pas b/compiler/mips/cgcpu.pas index 67f9e0f9e6..4b75677835 100644 --- a/compiler/mips/cgcpu.pas +++ b/compiler/mips/cgcpu.pas @@ -481,6 +481,9 @@ begin OS_32, OS_S32: Op := A_SW; + OS_64, + OS_S64: + Op := A_SD; else InternalError(2002122100); end;