From 1f5515bf74b1dce56f816e27a461dca568d219ea Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 31 May 1995 14:11:16 -0400 Subject: [PATCH] (rs6000_override_options): Fix typo with -mstring handling. From-SVN: r9845 --- gcc/config/rs6000/rs6000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.30.2