diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-31 14:11:16 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-31 14:11:16 -0400 |
commit | 1f5515bf74b1dce56f816e27a461dca568d219ea (patch) | |
tree | 61b34af7eca3c5f96aa5f84655c0df862d5077ca | |
parent | 58cee64304cf9f429969083f1dee99d1c51cb2c5 (diff) | |
download | gcc-1f5515bf74b1dce56f816e27a461dca568d219ea.zip gcc-1f5515bf74b1dce56f816e27a461dca568d219ea.tar.gz gcc-1f5515bf74b1dce56f816e27a461dca568d219ea.tar.bz2 |
(rs6000_override_options): Fix typo with -mstring handling.
From-SVN: r9845
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 69fb22d..cdf8732 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -189,7 +189,7 @@ rs6000_override_options () /* If -mstring or -mno-string was explicitly used, don't override with the processor default */ if (TARGET_STRING_SET) - target_flags = (target_flags & ~MASK_STRING) | multiple; + target_flags = (target_flags & ~MASK_STRING) | string; /* Don't allow -mmultiple or -mstring on little endian systems, because the hardware doesn't support the instructions used in little endian mode */ |