Commit ee61f880 by Jakub Jelinek Committed by Jakub Jelinek

aarch64.c (aarch64_print_operand): Don't start output_operand_lossage first…

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
parent 5e20aef8
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> 2017-12-11 Andi Kleen <ak@linux.intel.com>
PR gcov-profile/83355 PR gcov-profile/83355
...@@ -5258,7 +5258,7 @@ aarch64_print_operand (FILE *f, rtx x, int code) ...@@ -5258,7 +5258,7 @@ aarch64_print_operand (FILE *f, rtx x, int code)
/* Fall through. */ /* Fall through. */
default: default:
output_operand_lossage ("Unsupported operand for code '%c'", code); output_operand_lossage ("unsupported operand for code '%c'", code);
} }
break; break;
...@@ -9404,11 +9404,11 @@ aarch64_override_options (void) ...@@ -9404,11 +9404,11 @@ aarch64_override_options (void)
/* The compiler may have been configured with 2.23.* binutils, which does /* The compiler may have been configured with 2.23.* binutils, which does
not have support for ILP32. */ not have support for ILP32. */
if (TARGET_ILP32) if (TARGET_ILP32)
error ("Assembler does not support -mabi=ilp32"); error ("assembler does not support -mabi=ilp32");
#endif #endif
if (aarch64_ra_sign_scope != AARCH64_FUNCTION_NONE && TARGET_ILP32) 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. */ /* Make sure we properly set up the explicit options. */
if ((aarch64_cpu_string && valid_cpu) if ((aarch64_cpu_string && valid_cpu)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment