Steve Ellcey <sell...@marvell.com> writes:
> diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
> index 91e79d3..b8125d5 100644
> --- a/gcc/config/aarch64/aarch64.c
> +++ b/gcc/config/aarch64/aarch64.c
> @@ -18722,6 +18722,17 @@ aarch64_comp_type_attributes (const_tree type1, 
> const_tree type2)
>    return 1;
>  }
>  
> +/* Implement TARGET_GET_MULTILIB_ABI_NAME */
> +
> +static const char *
> +aarch64_get_multilib_abi_name (void)
> +{
> +  if (TARGET_BIG_END)
> +    return TARGET_ILP32 ? "aarch64_be_ilp32" : "aarch64_be";
> +  return TARGET_ILP32 ? "aarch64_ilp32" : "aarch64";
> +}
> +
> +

Nit: too many blank lines.

OK otherwise, thanks.

Richard

Reply via email to