mirror of https://github.com/xemu-project/xemu.git
Remove arm's local not_i32 tcg op now that there's one in tcg.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4475 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
116842ee3e
commit
4aa9aca4c2
|
@ -451,12 +451,6 @@ static void gen_sub_carry(TCGv dest, TCGv t0, TCGv t1)
|
|||
#define gen_sbc_T0_T1() gen_sub_carry(cpu_T[0], cpu_T[0], cpu_T[1])
|
||||
#define gen_rsc_T0_T1() gen_sub_carry(cpu_T[0], cpu_T[1], cpu_T[0])
|
||||
|
||||
/* FIXME: Implement this natively. */
|
||||
static inline void tcg_gen_not_i32(TCGv t0, TCGv t1)
|
||||
{
|
||||
tcg_gen_xori_i32(t0, t1, ~0);
|
||||
}
|
||||
|
||||
/* T0 &= ~T1. Clobbers T1. */
|
||||
/* FIXME: Implement bic natively. */
|
||||
static inline void tcg_gen_bic_i32(TCGv dest, TCGv t0, TCGv t1)
|
||||
|
|
Loading…
Reference in New Issue