summaryrefslogtreecommitdiff
path: root/target-mips/translate.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-mips/translate.c')
-rw-r--r--target-mips/translate.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c
index f0dc14d828..e6b3f547c5 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -7476,6 +7476,11 @@ static void mips_tcg_init(void)
cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1");
#endif
+ /* register helpers */
+#undef DEF_HELPER
+#define DEF_HELPER(ret, name, params) tcg_register_helper(name, #name);
+#include "helper.h"
+
inited = 1;
}