Win64: fix JIT floating-point constant
Repairs commit 71591a62a4
for Win64, where `long` != `intptr_t`
This commit is contained in:
parent
a539f4ed25
commit
e17acf5fef
|
@ -69,7 +69,7 @@ struct jit_local_state {
|
||||||
#ifdef JIT_X86_SSE
|
#ifdef JIT_X86_SSE
|
||||||
union {
|
union {
|
||||||
int i[2];
|
int i[2];
|
||||||
long l;
|
intptr_t l;
|
||||||
double d;
|
double d;
|
||||||
} d_data;
|
} d_data;
|
||||||
jit_insn *tmp_label;
|
jit_insn *tmp_label;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user