Skip to content

Commit

Permalink
Fix non-jit build
Browse files Browse the repository at this point in the history
  • Loading branch information
tbodt committed Oct 30, 2018
1 parent de81156 commit 9f6c6bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emu/interp/fpu.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "emu/float80.h"
#include "emu/fpu.h"

#define ty_real(x) ty_real_##x
#define ty_real_32 float
Expand Down Expand Up @@ -96,7 +97,7 @@
#define FLDM(val,z) \
FPUSH(f80_from_float(get(val,z),z))

#define FLDC(what) FPUSH(fconsts[fconst_##what])
#define FLDC(what) FPUSH(fpu_consts[fconst_##what])

#define FSTM(dst,z) \
set(dst, f80_to_float(ST(0),z),z)
Expand Down

0 comments on commit 9f6c6bb

Please sign in to comment.