Andrew Carlotti writes:
> @@ -697,6 +697,50 @@ aarch64_get_extension_string_for_isa_flags
> + const struct arch_info *entry;
> + for (entry = all_architectures; entry->arch != aarch64_no_arch; entry++)
> +{
> + if (entry->arch == arch)
> + break;
> +}
Sorry for the nit, but for
Andrew Carlotti writes:
> Add infrastructure to allow rewriting the architecture strings passed to
> the assembler (either as -march options or .arch directives). There was
> already canonicalisation everywhere except for an -march driver option
> passed directly to the compiler; this patch appli
Add infrastructure to allow rewriting the architecture strings passed to
the assembler (either as -march options or .arch directives). There was
already canonicalisation everywhere except for an -march driver option
passed directly to the compiler; this patch applies the same
canonicalisation ther