use E_*mode instead of just *mode

g++ 4.8.5 rejected cases with SFmode and DFmode, presumably due to
some bug in the constexpr implementation.

for  gcc/ChangeLog

	* config/rs6000/rs6000.c (have_compare_and_set_mask): Use
	E_*mode in cases.
This commit is contained in:
Alexandre Oliva 2020-09-16 18:15:01 -03:00 committed by Alexandre Oliva
parent 8c0f8755b2
commit 3f4b15f52f

View file

@ -15190,8 +15190,8 @@ have_compare_and_set_mask (machine_mode mode)
{
switch (mode)
{
case SFmode:
case DFmode:
case E_SFmode:
case E_DFmode:
return TARGET_P9_MINMAX;
default: