diff options
author | Richard Henderson <rth@twiddle.net> | 2010-03-19 11:26:05 -0700 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-03-26 21:29:08 +0100 |
commit | 8a56e840911572391019cd8b4ee86976dac2f593 (patch) | |
tree | 2c57b300e225172c7ce887443fc42d19fa3335a8 /tcg/mips | |
parent | a975160954d22c6330b81b5613bd5613f0935011 (diff) |
tcg: Use TCGCond where appropriate.
Use the TCGCond enumeration type in the brcond and setcond
related prototypes in tcg-op.h and each code generator.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/mips')
-rw-r--r-- | tcg/mips/tcg-target.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tcg/mips/tcg-target.c b/tcg/mips/tcg-target.c index 3b5ec3c490..566e35272b 100644 --- a/tcg/mips/tcg-target.c +++ b/tcg/mips/tcg-target.c @@ -464,7 +464,7 @@ static inline void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val) } } -static void tcg_out_brcond(TCGContext *s, int cond, int arg1, +static void tcg_out_brcond(TCGContext *s, TCGCond cond, int arg1, int arg2, int label_index) { TCGLabel *l = &s->labels[label_index]; @@ -522,7 +522,7 @@ static void tcg_out_brcond(TCGContext *s, int cond, int arg1, /* XXX: we implement it at the target level to avoid having to handle cross basic blocks temporaries */ -static void tcg_out_brcond2(TCGContext *s, int cond, int arg1, +static void tcg_out_brcond2(TCGContext *s, TCGCond cond, int arg1, int arg2, int arg3, int arg4, int label_index) { void *label_ptr; @@ -585,7 +585,7 @@ static void tcg_out_brcond2(TCGContext *s, int cond, int arg1, reloc_pc16(label_ptr, (tcg_target_long) s->code_ptr); } -static void tcg_out_setcond(TCGContext *s, int cond, int ret, +static void tcg_out_setcond(TCGContext *s, TCGCond cond, int ret, int arg1, int arg2) { switch (cond) { @@ -645,7 +645,7 @@ static void tcg_out_setcond(TCGContext *s, int cond, int ret, /* XXX: we implement it at the target level to avoid having to handle cross basic blocks temporaries */ -static void tcg_out_setcond2(TCGContext *s, int cond, int ret, +static void tcg_out_setcond2(TCGContext *s, TCGCond cond, int ret, int arg1, int arg2, int arg3, int arg4) { switch (cond) { |