From: Jim Wilson Date: Mon, 9 Aug 1993 19:29:28 +0000 (-0700) Subject: (OPTIMIZATION_OPTIONS): Use |=, not &= to set -mpgopt. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=256f27acc15d3048f82c0479b7df03f68d736cf1;p=gcc.git (OPTIMIZATION_OPTIONS): Use |=, not &= to set -mpgopt. From-SVN: r5120 --- 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; \ } \ }