diff options
author | Mike Pall <mike> | 2011-05-22 17:41:59 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-05-22 17:44:58 +0200 |
commit | 138f54352ad604ef50f77cbcc15abec6dbd883c0 (patch) | |
tree | f8ac2d3599cec2af1007da1c894847d3d0e2ff95 /src/lj_ir.h | |
parent | d0115c65f5ad80af2a113332906a0c5a010f9812 (diff) | |
download | luajit-138f54352ad604ef50f77cbcc15abec6dbd883c0.tar.gz luajit-138f54352ad604ef50f77cbcc15abec6dbd883c0.tar.bz2 luajit-138f54352ad604ef50f77cbcc15abec6dbd883c0.zip |
Split up FP IR instructions with SPLIT pass for soft-float targets.
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r-- | src/lj_ir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h index 1bc6c332..aac34350 100644 --- a/src/lj_ir.h +++ b/src/lj_ir.h | |||
@@ -283,7 +283,7 @@ LJ_DATA const uint8_t lj_ir_mode[IR__MAX+1]; | |||
283 | _(NIL) _(FALSE) _(TRUE) _(LIGHTUD) _(STR) _(P32) _(THREAD) \ | 283 | _(NIL) _(FALSE) _(TRUE) _(LIGHTUD) _(STR) _(P32) _(THREAD) \ |
284 | _(PROTO) _(FUNC) _(P64) _(CDATA) _(TAB) _(UDATA) \ | 284 | _(PROTO) _(FUNC) _(P64) _(CDATA) _(TAB) _(UDATA) \ |
285 | _(FLOAT) _(NUM) _(I8) _(U8) _(I16) _(U16) _(INT) _(U32) _(I64) _(U64) \ | 285 | _(FLOAT) _(NUM) _(I8) _(U8) _(I16) _(U16) _(INT) _(U32) _(I64) _(U64) \ |
286 | /* There is room for 10 more types. */ | 286 | _(SOFTFP) /* There is room for 9 more types. */ |
287 | 287 | ||
288 | /* IR result type and flags (8 bit). */ | 288 | /* IR result type and flags (8 bit). */ |
289 | typedef enum { | 289 | typedef enum { |