diff options
author | Mike Pall <mike> | 2020-05-22 04:53:35 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2020-05-22 04:53:35 +0200 |
commit | 5655be4546d9177890c69f0d0accac4773ff0887 (patch) | |
tree | 794518da2d5a42ec79013eda0c92f7f1e4e8d3ce /src/lj_target_x86.h | |
parent | c5b8e9168bae3efb6eb0fe2d4c9466c57fa5f971 (diff) | |
download | luajit-5655be4546d9177890c69f0d0accac4773ff0887.tar.gz luajit-5655be4546d9177890c69f0d0accac4773ff0887.tar.bz2 luajit-5655be4546d9177890c69f0d0accac4773ff0887.zip |
Cleanup math function compilation and fix inconsistencies.
Diffstat (limited to 'src/lj_target_x86.h')
-rw-r--r-- | src/lj_target_x86.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index 71c930fe..fd72c71d 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h | |||
@@ -228,16 +228,10 @@ typedef enum { | |||
228 | /* Note: little-endian byte-order! */ | 228 | /* Note: little-endian byte-order! */ |
229 | XI_FLDZ = 0xeed9, | 229 | XI_FLDZ = 0xeed9, |
230 | XI_FLD1 = 0xe8d9, | 230 | XI_FLD1 = 0xe8d9, |
231 | XI_FLDLG2 = 0xecd9, | ||
232 | XI_FLDLN2 = 0xedd9, | ||
233 | XI_FDUP = 0xc0d9, /* Really fld st0. */ | 231 | XI_FDUP = 0xc0d9, /* Really fld st0. */ |
234 | XI_FPOP = 0xd8dd, /* Really fstp st0. */ | 232 | XI_FPOP = 0xd8dd, /* Really fstp st0. */ |
235 | XI_FPOP1 = 0xd9dd, /* Really fstp st1. */ | 233 | XI_FPOP1 = 0xd9dd, /* Really fstp st1. */ |
236 | XI_FRNDINT = 0xfcd9, | 234 | XI_FRNDINT = 0xfcd9, |
237 | XI_FSIN = 0xfed9, | ||
238 | XI_FCOS = 0xffd9, | ||
239 | XI_FPTAN = 0xf2d9, | ||
240 | XI_FPATAN = 0xf3d9, | ||
241 | XI_FSCALE = 0xfdd9, | 235 | XI_FSCALE = 0xfdd9, |
242 | XI_FYL2X = 0xf1d9, | 236 | XI_FYL2X = 0xf1d9, |
243 | 237 | ||