* src/vm/jit/emit.h [SIZEOF_VOID_P == 4] (emit_store_low): Added.
authortwisti <none@none>
Tue, 11 Jul 2006 18:39:13 +0000 (18:39 +0000)
committertwisti <none@none>
Tue, 11 Jul 2006 18:39:13 +0000 (18:39 +0000)
[SIZEOF_VOID_P == 4] (emit_store_high): Likewise.

src/vm/jit/emit.h

index 3cfea29c2f364cd662d86891e00586ee8362f27c..226127f0cf256d32acfa40dac3572a0d05fcab77 100644 (file)
@@ -77,6 +77,11 @@ s4 emit_load_s3_high(jitdata *jd, instruction *iptr, stackptr src, s4 tempreg);
 
 void emit_store(jitdata *jd, instruction *iptr, stackptr dst, s4 d);
 
+#if SIZEOF_VOID_P == 4
+void emit_store_low(jitdata *jd, instruction *iptr, stackptr dst, s4 d);
+void emit_store_high(jitdata *jd, instruction *iptr, stackptr dst, s4 d);
+#endif
+
 void emit_copy(jitdata *jd, instruction *iptr, stackptr src, stackptr dst);
 void emit_iconst(codegendata *cd, s4 d, s4 value);
 void emit_lconst(codegendata *cd, s4 d, s8 value);