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:
parent
8c0f8755b2
commit
3f4b15f52f
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue