Re: [PATCH][AARCH64]Use selected cpu's tuning when no tuning parameter is specified.

2014-12-04 Thread Marcus Shawcroft
On 27 November 2014 at 11:27, Renlin Li renlin...@arm.com wrote: gcc/ChangeLog: 2014-11-27 Renlin Li renlin...@arm.com * config/aarch64/aarch64.c (aarch64_parse_cpu): Don't define selected_tune. (aarch64_override_options): Use selected_cpu's tuning. OK and this is also broken

[PING] [PATCH][AARCH64]Use selected cpu's tuning when no tuning parameter is specified.

2014-12-02 Thread Renlin Li
On 27/11/14 11:27, Renlin Li wrote: Hi all, We have the following code in aarch64_override_options() function. /* The selected cpu may be an architecture, so lookup tuning by core ID. */ if (!selected_tune) selected_tune = all_cores[selected_cpu-core]; However, the logic here is

[PATCH][AARCH64]Use selected cpu's tuning when no tuning parameter is specified.

2014-11-27 Thread Renlin Li
Hi all, We have the following code in aarch64_override_options() function. /* The selected cpu may be an architecture, so lookup tuning by core ID. */ if (!selected_tune) selected_tune = all_cores[selected_cpu-core]; However, the logic here is not right any more according to our