aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-08-09 12:29:28 -0700
committerJim Wilson <wilson@gcc.gnu.org>1993-08-09 12:29:28 -0700
commit256f27acc15d3048f82c0479b7df03f68d736cf1 (patch)
tree5cca691c6a38aee09e8efbc440e53ee6bbf4f953
parent377b77611649f7eb01f47283aae8d6c5657d6049 (diff)
downloadgcc-256f27acc15d3048f82c0479b7df03f68d736cf1.zip
gcc-256f27acc15d3048f82c0479b7df03f68d736cf1.tar.gz
gcc-256f27acc15d3048f82c0479b7df03f68d736cf1.tar.bz2
(OPTIMIZATION_OPTIONS): Use |=, not &= to set -mpgopt.
From-SVN: r5120
-rw-r--r--gcc/config/mips/mips.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h
index ed9ea47..4674212 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; \
} \
}