diff options
author | Jakub Jelinek <jakub@redhat.com> | 2017-12-11 18:59:01 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2017-12-11 18:59:01 +0100 |
commit | ee61f88010e61b2d78c449349a8dd08f3b5a2c8a (patch) | |
tree | da5f1ec8e8fa7354c91f4cfec2afb7c10a5e682d /gcc | |
parent | 5e20aef8df76663e5b8507114db9ca28ce76abae (diff) | |
download | gcc-ee61f88010e61b2d78c449349a8dd08f3b5a2c8a.zip gcc-ee61f88010e61b2d78c449349a8dd08f3b5a2c8a.tar.gz gcc-ee61f88010e61b2d78c449349a8dd08f3b5a2c8a.tar.bz2 |
aarch64.c (aarch64_print_operand): Don't start output_operand_lossage first argument with capital letter.
* config/aarch64/aarch64.c (aarch64_print_operand): Don't start
output_operand_lossage first argument with capital letter.
(aarch64_override_options): Don't start error and sorry first argument
with capital letter.
From-SVN: r255544
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/aarch64/aarch64.c | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 75a4dc4..10ef11c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2017-12-11 Jakub Jelinek <jakub@redhat.com> + + * config/aarch64/aarch64.c (aarch64_print_operand): Don't start + output_operand_lossage first argument with capital letter. + (aarch64_override_options): Don't start error and sorry first argument + with capital letter. + 2017-12-11 Andi Kleen <ak@linux.intel.com> PR gcov-profile/83355 diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 83d8607..fc157fa 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -5258,7 +5258,7 @@ aarch64_print_operand (FILE *f, rtx x, int code) /* Fall through. */ default: - output_operand_lossage ("Unsupported operand for code '%c'", code); + output_operand_lossage ("unsupported operand for code '%c'", code); } break; @@ -9404,11 +9404,11 @@ aarch64_override_options (void) /* The compiler may have been configured with 2.23.* binutils, which does not have support for ILP32. */ if (TARGET_ILP32) - error ("Assembler does not support -mabi=ilp32"); + error ("assembler does not support -mabi=ilp32"); #endif if (aarch64_ra_sign_scope != AARCH64_FUNCTION_NONE && TARGET_ILP32) - sorry ("Return address signing is only supported for -mabi=lp64"); + sorry ("return address signing is only supported for -mabi=lp64"); /* Make sure we properly set up the explicit options. */ if ((aarch64_cpu_string && valid_cpu) |