On 02/08/2018 09:31 AM, Alex Bennée wrote: > + case 0x2f: /* FABS */ > + gen_helper_advsimd_absh(tcg_res, tcg_op); > + break; > + case 0x6f: /* FNEG */ > + tcg_gen_xori_i32(tcg_res, tcg_op, 0x8000); > + break;
Why is ABS a function call while NEG a bit operation? r~