diff options
author | Mike Pall <mike> | 2013-05-24 00:45:44 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-05-24 00:49:02 +0200 |
commit | f1f7e403182c891a356ce8813417820af19a778b (patch) | |
tree | e992da894d0e7fb21cffb2948ad04ffc38cd158c /src/lj_target_mips.h | |
parent | b3369f3c95a11a8c451b244a2da69f1c3aee31c4 (diff) | |
download | luajit-f1f7e403182c891a356ce8813417820af19a778b.tar.gz luajit-f1f7e403182c891a356ce8813417820af19a778b.tar.bz2 luajit-f1f7e403182c891a356ce8813417820af19a778b.zip |
FFI: Compile VLA/VLS and large cdata allocs with default initialization.
Diffstat (limited to '')
-rw-r--r-- | src/lj_target_mips.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lj_target_mips.h b/src/lj_target_mips.h index 36f46c83..9bf1d2cb 100644 --- a/src/lj_target_mips.h +++ b/src/lj_target_mips.h | |||
@@ -169,6 +169,9 @@ typedef enum MIPSIns { | |||
169 | MIPSI_SLTU = 0x0000002b, | 169 | MIPSI_SLTU = 0x0000002b, |
170 | MIPSI_MOVZ = 0x0000000a, | 170 | MIPSI_MOVZ = 0x0000000a, |
171 | MIPSI_MOVN = 0x0000000b, | 171 | MIPSI_MOVN = 0x0000000b, |
172 | MIPSI_MFHI = 0x00000010, | ||
173 | MIPSI_MFLO = 0x00000012, | ||
174 | MIPSI_MULT = 0x00000018, | ||
172 | 175 | ||
173 | MIPSI_SLL = 0x00000000, | 176 | MIPSI_SLL = 0x00000000, |
174 | MIPSI_SRL = 0x00000002, | 177 | MIPSI_SRL = 0x00000002, |