+2019-04-19 Christophe Lyon <christophe.lyon@linaro.org>
+
+ PR translation/90118
+ * check-internal-format-escaping.py: Check that %< is not next to
+ a word.
+
2019-04-17 Jakub Jelinek <jakub@redhat.com>
* dg-extract-results.sh: Only handle WARNING: program timed out
print('%s: %s' % (origin, text))
if re.search("[^%]'", p):
print('%s: %s' % (origin, text))
+ # %< should not be preceded by a non-punctuation
+ # %character.
+ if re.search("[a-zA-Z0-9]%<", p):
+ print('%s: %s' % (origin, text))
j += 1
origin = None
+2019-04-19 Christophe Lyon <christophe.lyon@linaro.org>
+
+ PR translation/90118
+ * config/aarch64/aarch64.c (aarch64_override_options_internal):
+ Add missing space before %<.
+
2019-04-18 Peter Bergner <bergner@linux.ibm.com>
PR rtl-optimization/87871
if (aarch64_stack_protector_guard == SSP_GLOBAL
&& opts->x_aarch64_stack_protector_guard_offset_str)
{
- error ("incompatible options %<-mstack-protector-guard=global%> and"
+ error ("incompatible options %<-mstack-protector-guard=global%> and "
"%<-mstack-protector-guard-offset=%s%>",
aarch64_stack_protector_guard_offset_str);
}