Re: [PATCH] x86: Don't change mode for XOR in ix86_expand_ternlog

2025-07-16 Thread Hongtao Liu
On Thu, Jul 17, 2025 at 9:43 AM H.J. Lu wrote: > > There is no need to change mode for XOR in ix86_expand_ternlog now. > Whatever reasons for it in the first place no longer exist. Tested > on x86-64 with -m32. There are no regressions. Ok. > > * config/i386/i386.cc (ix86_expand_ternlog)

[PATCH] x86: Don't change mode for XOR in ix86_expand_ternlog

2025-07-16 Thread H.J. Lu
There is no need to change mode for XOR in ix86_expand_ternlog now. Whatever reasons for it in the first place no longer exist. Tested on x86-64 with -m32. There are no regressions. * config/i386/i386.cc (ix86_expand_ternlog): Don't change mode for XOR. Signed-off-by: H.J. Lu -