about summary refs log tree commit diff stats
path: root/miasm2/arch/sh4/regs.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/sh4/regs.py')
-rw-r--r--miasm2/arch/sh4/regs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/arch/sh4/regs.py b/miasm2/arch/sh4/regs.py
index bfc61b04..6ffe9691 100644
--- a/miasm2/arch/sh4/regs.py
+++ b/miasm2/arch/sh4/regs.py
@@ -70,6 +70,8 @@ all_regs_ids = [
     PC, PR, R0, GBR, SR, VBR, SSR, SPC,
     SGR, DBR, MACH, MACL, FPUL, FR0]
 
+all_regs_ids_no_alias = all_regs_ids
+
 all_regs_ids_byname = dict([(x.name, x) for x in all_regs_ids])
 
 all_regs_ids_init = [ExprId("%s_init" % x.name, x.size) for x in all_regs_ids]