mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-15 15:11:15 +08:00
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:
parent
e7178413f4
commit
4180490732
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user