diff options
author | Mike Pall <mike> | 2016-06-08 10:24:00 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2016-06-08 10:24:00 +0200 |
commit | 287a5347cfe452d44748327fb7c27f6ce57f5dc2 (patch) | |
tree | 72ee534bbad2ff069408977f0cb2787527dcdbc2 /src/lj_target_mips.h | |
parent | f5983437a6b08c140bdeb2fc15fa30d7f3b0daad (diff) | |
download | luajit-287a5347cfe452d44748327fb7c27f6ce57f5dc2.tar.gz luajit-287a5347cfe452d44748327fb7c27f6ce57f5dc2.tar.bz2 luajit-287a5347cfe452d44748327fb7c27f6ce57f5dc2.zip |
MIPS: Support MIPS16 interlinking.
Diffstat (limited to 'src/lj_target_mips.h')
-rw-r--r-- | src/lj_target_mips.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_target_mips.h b/src/lj_target_mips.h index ac72528d..6a7d4b50 100644 --- a/src/lj_target_mips.h +++ b/src/lj_target_mips.h | |||
@@ -239,6 +239,7 @@ typedef enum MIPSIns { | |||
239 | MIPSI_B = 0x10000000, | 239 | MIPSI_B = 0x10000000, |
240 | MIPSI_J = 0x08000000, | 240 | MIPSI_J = 0x08000000, |
241 | MIPSI_JAL = 0x0c000000, | 241 | MIPSI_JAL = 0x0c000000, |
242 | MIPSI_JALX = 0x74000000, | ||
242 | MIPSI_JR = 0x00000008, | 243 | MIPSI_JR = 0x00000008, |
243 | MIPSI_JALR = 0x0000f809, | 244 | MIPSI_JALR = 0x0000f809, |
244 | 245 | ||