From ac288386c44bdfab783ae2cdc0882d411a9c6b00 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Tue, 14 Oct 2014 11:15:18 +0000 Subject: the compiler now allows + to be used as a floating point addition in the abstract syntax --- src/runtime/c/pgf/jit.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/runtime/c/pgf/jit.c') diff --git a/src/runtime/c/pgf/jit.c b/src/runtime/c/pgf/jit.c index c97113b5a..8cb2257d6 100644 --- a/src/runtime/c/pgf/jit.c +++ b/src/runtime/c/pgf/jit.c @@ -1160,6 +1160,11 @@ pgf_jit_function(PgfReader* rdr, PgfAbstr* abstr, #endif jit_jmpi(abstr->eval_gates->mk_const); break; + case PGF_INSTR_ADD: +#ifdef PGF_JIT_DEBUG + gu_printf(out, err, "ADD\n"); +#endif + break; default: gu_impossible(); } -- cgit v1.2.3