+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
&& 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);
}
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;
}