PR translation/90118 Missing space between words

2019-04-19  Christophe Lyon  <christophe.lyon@linaro.org>

	PR translation/90118

	contrib/
	* check-internal-format-escaping.py: Check that %< is not next to
	a word.

	gcc/
	* config/aarch64/aarch64.c (aarch64_override_options_internal):
	Add missing space before %<.

From-SVN: r270454
This commit is contained in:
Christophe Lyon 2019-04-19 09:08:49 +00:00 committed by Christophe Lyon
parent e7178413f4
commit 4180490732
4 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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

View File

@ -58,6 +58,10 @@ for i, l in enumerate(lines):
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

View File

@ -1,3 +1,9 @@
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

View File

@ -11483,7 +11483,7 @@ aarch64_override_options_internal (struct gcc_options *opts)
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);
}