Re: [PATCH 2/4] PowerPC: Rename functions for min, max, cmove

2020-09-10 Thread Segher Boessenkool
On Wed, Aug 26, 2020 at 10:44:22PM -0400, Michael Meissner wrote: > PowerPC: Rename functions for min, max, cmove. > > This patch renames the functions that generate the ISA 3.0 C minimum, C > maximum, and conditional move instructions to use a better name than just > using > a _p9 suffix. Becau

Re: [PATCH 2/4] PowerPC: Rename functions for min, max, cmove

2020-09-10 Thread Segher Boessenkool
On Thu, Aug 27, 2020 at 03:47:15PM -0500, will schmidt wrote: > On Wed, 2020-08-26 at 22:44 -0400, Michael Meissner via Gcc-patches wrote: > > * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): Rename to > > maybe_emit_fp_c_minmax. > ok > > > (maybe_emit_fp_c_minmax): Rename rs6000_e

Re: [PATCH 2/4] PowerPC: Rename functions for min, max, cmove

2020-08-27 Thread will schmidt via Gcc-patches
On Wed, 2020-08-26 at 22:44 -0400, Michael Meissner via Gcc-patches wrote: > PowerPC: Rename functions for min, max, cmove. > > This patch renames the functions that generate the ISA 3.0 C minimum, C > maximum, and conditional move instructions to use a better name than just > using > a _p9 suffi

[PATCH 2/4] PowerPC: Rename functions for min, max, cmove

2020-08-26 Thread Michael Meissner via Gcc-patches
PowerPC: Rename functions for min, max, cmove. This patch renames the functions that generate the ISA 3.0 C minimum, C maximum, and conditional move instructions to use a better name than just using a _p9 suffix. Because the functions can fail, the names use "maybe_emit" instead of "generate_" in