mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Silence gcc warning about constant overflow
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5175 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
5f9981c71d
commit
47ad35f16a
2 changed files with 11 additions and 3 deletions
|
@ -1602,7 +1602,7 @@ static inline void gen_op_fpexception_im(int fsr_flags)
|
|||
{
|
||||
TCGv r_const;
|
||||
|
||||
tcg_gen_andi_tl(cpu_fsr, cpu_fsr, ~FSR_FTT_MASK);
|
||||
tcg_gen_andi_tl(cpu_fsr, cpu_fsr, FSR_FTT_NMASK);
|
||||
tcg_gen_ori_tl(cpu_fsr, cpu_fsr, fsr_flags);
|
||||
r_const = tcg_const_i32(TT_FP_EXCP);
|
||||
tcg_gen_helper_0_1(raise_exception, r_const);
|
||||
|
@ -1628,7 +1628,7 @@ static int gen_trap_ifnofpu(DisasContext *dc, TCGv r_cond)
|
|||
|
||||
static inline void gen_op_clear_ieee_excp_and_FTT(void)
|
||||
{
|
||||
tcg_gen_andi_tl(cpu_fsr, cpu_fsr, ~(FSR_FTT_MASK | FSR_CEXC_MASK));
|
||||
tcg_gen_andi_tl(cpu_fsr, cpu_fsr, FSR_FTT_CEXC_NMASK);
|
||||
}
|
||||
|
||||
static inline void gen_clear_float_exceptions(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue