From 256f27acc15d3048f82c0479b7df03f68d736cf1 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 9 Aug 1993 12:29:28 -0700 Subject: [PATCH] (OPTIMIZATION_OPTIONS): Use |=, not &= to set -mpgopt. From-SVN: r5120 --- gcc/config/mips/mips.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index ed9ea47c896..46742125dae 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -484,7 +484,7 @@ while (0) { \ flag_omit_frame_pointer = TRUE; \ flag_schedule_insns_after_reload = TRUE; \ - target_flags &= MASK_GPOPT; \ + target_flags |= MASK_GPOPT; \ } \ } -- 2.30.2