https://gcc.gnu.org/g:1a961f347e6ec1b92d6f5e5d1161a958b93278d7
commit 1a961f347e6ec1b92d6f5e5d1161a958b93278d7 Author: Michael Meissner <[email protected]> Date: Wed Jul 15 11:34:34 2026 -0400 Fix merge error. Diff: --- gcc/config/rs6000/rs6000.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/rs6000/rs6000.cc b/gcc/config/rs6000/rs6000.cc index 90534984dbc2..a5a51d569066 100644 --- a/gcc/config/rs6000/rs6000.cc +++ b/gcc/config/rs6000/rs6000.cc @@ -4558,7 +4558,7 @@ rs6000_option_override_internal (bool global_init_p) rs6000_isa_flags |= OPTION_MASK_DMF; /* Turn off DMF options on non-future systems. */ - else if (!TARGET_FUTURE && TARGET_DMF) + else if (!TARGET_FUTURE && TARGET_DENSE_MATH) { if ((rs6000_isa_flags_explicit & OPTION_MASK_DMF) != 0) error ("%qs requires %qs", "-mdense_math", "-mcpu=future");
