forked from GitHub/gf-core
fix the compilation when debugging is switched off
This commit is contained in:
@@ -155,7 +155,9 @@ pgf_jit_predicate(PgfReader* rdr, PgfAbstr* abstr,
|
|||||||
abscat->predicate = (PgfFunction) jit_get_ip().ptr;
|
abscat->predicate = (PgfFunction) jit_get_ip().ptr;
|
||||||
|
|
||||||
if (strcmp(abscat->name, "String") == 0) {
|
if (strcmp(abscat->name, "String") == 0) {
|
||||||
|
#ifdef PGF_JIT_DEBUG
|
||||||
gu_printf(out, err, " MK_STRING\n");
|
gu_printf(out, err, " MK_STRING\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
jit_prepare(2);
|
jit_prepare(2);
|
||||||
jit_pusharg_p(JIT_VCLOS);
|
jit_pusharg_p(JIT_VCLOS);
|
||||||
@@ -172,7 +174,9 @@ pgf_jit_predicate(PgfReader* rdr, PgfAbstr* abstr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(abscat->name, "Int") == 0) {
|
if (strcmp(abscat->name, "Int") == 0) {
|
||||||
|
#ifdef PGF_JIT_DEBUG
|
||||||
gu_printf(out, err, " MK_INT\n");
|
gu_printf(out, err, " MK_INT\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
jit_prepare(2);
|
jit_prepare(2);
|
||||||
jit_pusharg_p(JIT_VCLOS);
|
jit_pusharg_p(JIT_VCLOS);
|
||||||
@@ -189,7 +193,9 @@ pgf_jit_predicate(PgfReader* rdr, PgfAbstr* abstr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(abscat->name, "Float") == 0) {
|
if (strcmp(abscat->name, "Float") == 0) {
|
||||||
|
#ifdef PGF_JIT_DEBUG
|
||||||
gu_printf(out, err, " MK_FLOAT\n");
|
gu_printf(out, err, " MK_FLOAT\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
jit_prepare(2);
|
jit_prepare(2);
|
||||||
jit_pusharg_p(JIT_VCLOS);
|
jit_pusharg_p(JIT_VCLOS);
|
||||||
|
|||||||
Reference in New Issue
Block a user