From: David Schleef Date: Mon, 2 Aug 2010 19:30:58 +0000 (-0700) Subject: compiler: increase number of temp variables X-Git-Tag: orc-0.4.7~91 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f75df4552d446e2fdd576d2b72c05fc7705e3bfe;p=platform%2Fupstream%2Forc.git compiler: increase number of temp variables --- diff --git a/orc/orcprogram.h b/orc/orcprogram.h index ae5e558..a9e8d09 100644 --- a/orc/orcprogram.h +++ b/orc/orcprogram.h @@ -33,6 +33,7 @@ typedef void (*OrcExecutorFunc)(OrcExecutor *ex); #define ORC_N_FIXUPS 40 #define ORC_N_CONSTANTS 20 #define ORC_N_LABELS 40 +#define ORC_N_COMPILER_VARIABLES (ORC_N_VARIABLES+32) #define ORC_GP_REG_BASE 32 #define ORC_VEC_REG_BASE 64 @@ -365,7 +366,7 @@ struct _OrcCompiler { int n_insns; int insn_flags[ORC_N_INSNS]; - OrcVariable vars[ORC_N_VARIABLES]; + OrcVariable vars[ORC_N_COMPILER_VARIABLES]; int n_temp_vars; int n_dup_vars;