From: Aurelien Jarno Date: Tue, 25 Sep 2012 22:30:12 +0000 (+0200) Subject: tcg/i386: fix build with -march < i686 X-Git-Tag: v1.2.1~145 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c90a8840b47a1641ad6e46e4a52520e1148127c5;p=thirdparty%2Fqemu.git tcg/i386: fix build with -march < i686 The movcond_i32 op has to be protected with TCG_TARGET_HAS_movcond_i32 to fix the build with -march < i686. Thanks to Richard Henderson for the hint. Reported-by: Alex Barcelo Signed-off-by: Aurelien Jarno Signed-off-by: Michael Roth --- diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index 85c6b8159e2..616ef232125 100644 --- a/tcg/i386/tcg-target.c +++ b/tcg/i386/tcg-target.c @@ -1907,7 +1907,9 @@ 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 #if TCG_TARGET_REG_BITS == 32 { INDEX_op_mulu2_i32, { "a", "d", "a", "r" } },