From: Richard Kenner Date: Wed, 31 May 1995 18:11:16 +0000 (-0400) Subject: (rs6000_override_options): Fix typo with -mstring handling. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f5515bf74b1dce56f816e27a461dca568d219ea;p=gcc.git (rs6000_override_options): Fix typo with -mstring handling. From-SVN: r9845 --- diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 69fb22d30c7..cdf8732ba13 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 */