Fix double string quoting.
authorMartin Liska <mliska@suse.cz>
Mon, 11 Mar 2019 20:56:07 +0000 (21:56 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 11 Mar 2019 20:56:07 +0000 (20:56 +0000)
2019-03-11  Martin Liska  <mliska@suse.cz>

* config/aarch64/aarch64.c (aarch64_override_options_internal):
Fix double string quoting.

From-SVN: r269595

gcc/ChangeLog
gcc/config/aarch64/aarch64.c

index 61e23a645b167c2559004a1712f7a30477c9cdac..2d087534917b90e58b84d4d78ac231a5dbc3d88f 100644 (file)
@@ -1,3 +1,8 @@
+2019-03-11  Martin Liska  <mliska@suse.cz>
+
+       * config/aarch64/aarch64.c (aarch64_override_options_internal):
+       Fix double string quoting.
+
 2019-03-11  Martin Liska  <mliska@suse.cz>
 
        * collect-utils.c (collect_wait): Wrap apostrophes
index 252bed7f0e57b6b88f9890a6999ee80053024e89..b38505b0872688634b2d3f625ab8d313e89cfca0 100644 (file)
@@ -11455,7 +11455,7 @@ aarch64_override_options_internal (struct gcc_options *opts)
       && opts->x_aarch64_stack_protector_guard_offset_str)
     {
       error ("incompatible options %<-mstack-protector-guard=global%> and"
-            "%<-mstack-protector-guard-offset=%qs%>",
+            "%<-mstack-protector-guard-offset=%s%>",
             aarch64_stack_protector_guard_offset_str);
     }
 
@@ -11482,7 +11482,7 @@ aarch64_override_options_internal (struct gcc_options *opts)
       long offs = strtol (aarch64_stack_protector_guard_offset_str, &end, 0);
       if (!*str || *end || errno)
        error ("%qs is not a valid offset in %qs", str,
-              "%<-mstack-protector-guard-offset=%>");
+              "-mstack-protector-guard-offset=");
       aarch64_stack_protector_guard_offset = offs;
     }