about summary refs log tree commit diff stats
path: root/miasm2/arch/mips32/regs.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-08-25 12:55:02 +0200
committerserpilliere <devnull@localhost>2014-08-25 12:55:02 +0200
commit8780dfbe39e48ef0b513a8fb3c7c9f7c985cfb72 (patch)
tree8a2591ae1b07d8b1fc4e192a03aa39fba9d474c9 /miasm2/arch/mips32/regs.py
parent22c0cc1ae2417550ff87baa33edfd0330071ddc7 (diff)
downloadmiasm-8780dfbe39e48ef0b513a8fb3c7c9f7c985cfb72.tar.gz
miasm-8780dfbe39e48ef0b513a8fb3c7c9f7c985cfb72.zip
mips: fix all_regs_ids_no_alias; fix llvm so
Diffstat (limited to 'miasm2/arch/mips32/regs.py')
-rw-r--r--miasm2/arch/mips32/regs.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/mips32/regs.py b/miasm2/arch/mips32/regs.py
index 0f065371..bf4926a8 100644
--- a/miasm2/arch/mips32/regs.py
+++ b/miasm2/arch/mips32/regs.py
@@ -47,6 +47,7 @@ regs_fcc_expr, regs_fcc_init, fccregs = gen_regs(regs_fcc_str, globals())
 all_regs_ids = [PC] + gpregs_expr + regs_flt_expr + regs_fcc_expr
 all_regs_ids_byname = dict([(x.name, x) for x in all_regs_ids])
 all_regs_ids_init = [PC_init] + gpregs_init + regs_flt_init + regs_fcc_init
+all_regs_ids_no_alias = all_regs_ids[:]
 
 regs_init = {}
 for i, r in enumerate(all_regs_ids):