aarch64.c (aarch64_print_operand): Don't start output_operand_lossage first argument...
authorJakub Jelinek <jakub@redhat.com>
Mon, 11 Dec 2017 17:59:01 +0000 (18:59 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 11 Dec 2017 17:59:01 +0000 (18:59 +0100)
* 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

gcc/ChangeLog
gcc/config/aarch64/aarch64.c

index 75a4dc4c35a577f9b646d0f793d9a299765fd36a..10ef11cdd4786c28e11f84fa1d4ac63d84aef07b 100644 (file)
@@ -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
index 83d86071312a25789dc40f4f236fec5260d04c87..fc157fa621923b9fedf237cab57d89935aad723c 100644 (file)
@@ -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)