Commit 8421d9e56f2beb6096366e878dba1b655f06914a
1 parent
b0f74c87
Avoid compiler warning
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5710 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
tcg/ppc64/tcg-target.c
... | ... | @@ -901,7 +901,7 @@ static void ppc_addi64 (TCGContext *s, int rt, int ra, tcg_target_long si) |
901 | 901 | { |
902 | 902 | /* XXX: suboptimal */ |
903 | 903 | if (si == (int16_t) si |
904 | - || (((uint64_t) si >> 31) == 0) && (si & 0x8000) == 0) | |
904 | + || ((((uint64_t) si >> 31) == 0) && (si & 0x8000) == 0)) | |
905 | 905 | ppc_addi32 (s, rt, ra, si); |
906 | 906 | else { |
907 | 907 | tcg_out_movi (s, TCG_TYPE_I64, 0, si); | ... | ... |