Win64: fix JIT floating-point constant

Repairs commit 71591a62a4 for Win64, where `long` != `intptr_t`
This commit is contained in:
Matthew Flatt 2014-06-02 18:26:50 +01:00
parent a539f4ed25
commit e17acf5fef

View File

@ -69,7 +69,7 @@ struct jit_local_state {
#ifdef JIT_X86_SSE
union {
int i[2];
long l;
intptr_t l;
double d;
} d_data;
jit_insn *tmp_label;