about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-03-15 22:17:10 +0000
committerptitSeb <sebastien.chev@gmail.com>2023-03-15 22:17:10 +0000
commit50bc5c83986e1ce6b9980d191796921b2191d5be (patch)
tree6458dbceceb63f5f27cb4f45ab8e60ed1d43c8b3
parent281065b5d409cb2be2d87a37f561a96fff495ccc (diff)
downloadbox64-50bc5c83986e1ce6b9980d191796921b2191d5be.tar.gz
box64-50bc5c83986e1ce6b9980d191796921b2191d5be.zip
[RV64_DYNAREC] Update rv64_printer with new reg allocation
-rw-r--r--src/dynarec/rv64/rv64_printer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dynarec/rv64/rv64_printer.c b/src/dynarec/rv64/rv64_printer.c
index 25804b8d..e6760bd1 100644
--- a/src/dynarec/rv64/rv64_printer.c
+++ b/src/dynarec/rv64/rv64_printer.c
@@ -19,8 +19,8 @@ typedef struct {
 } insn_t;
 
 static const char gpnames[32][9] = {
-    "zero", "ra",   "sp",   "gp",   "tp",   "t0_flags",   "t1_rip",   "t2",
-    "s0",   "s1",   "a0",   "a1",   "a2",   "a3",   "a4",   "a5",
+    "zero", "ra",   "sp",   "gp",   "tp",   "t0_mask",   "t1",   "t2_rip",
+    "s0_flags",   "s1",   "a0",   "a1",   "a2",   "a3",   "a4",   "a5",
     "a6_rax",   "a7_rcx",   "s2_rdx",   "s3_rbx",   "s4_rsp",   "s5_rbp",   "s6_rsi",   "s7_rdi",
     "s8_r8",   "s9_r9",   "s10_r10",  "s11_r11",  "t3_r12",   "t4_r13",   "t5_r14",   "t6_r15",
 };