diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2013-11-06 19:56:58 +0100 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2014-01-25 15:21:33 -0800 |
commit | 2d23d5edb5b23849c668dd729e4da7b2c63b163b (patch) | |
tree | 896d2c2bfec9c0364150f555bda7596f0788885c /tcg | |
parent | 085bb5bb64069a16b843fca840f91cdfb3f40fda (diff) |
tcg/i386: cleanup useless #ifdef
TCG_TARGET_HAS_movcond_i32 is always defined to 1 in tcg-target.h, so
remove the corresponding #ifdef #endif sequence, left from a previous
refactoring.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/i386/tcg-target.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index db0039a8f1..5d4cf9386e 100644 --- a/tcg/i386/tcg-target.c +++ b/tcg/i386/tcg-target.c @@ -2026,9 +2026,7 @@ static const TCGTargetOpDef x86_op_defs[] = { { INDEX_op_setcond_i32, { "q", "r", "ri" } }, { INDEX_op_deposit_i32, { "Q", "0", "Q" } }, -#if TCG_TARGET_HAS_movcond_i32 { INDEX_op_movcond_i32, { "r", "r", "ri", "r", "0" } }, -#endif { INDEX_op_mulu2_i32, { "a", "d", "a", "r" } }, { INDEX_op_muls2_i32, { "a", "d", "a", "r" } }, |