Hi Joel,
On 2/27/20 2:31 PM, Joel Hutton wrote:
The message for conflicting mcpu and march previously printed the
architecture of the CPU instead of the CPU name, as well as omitting the
extensions to the march string. This patch corrects both errors. This
patch fixes PR target/87612.
before:
$ aarch64-unknown-linux-gnu-gcc -S -O3 -march=armv8-a+sve
-mcpu=cortex-a76 foo.c
cc1: warning: switch '-mcpu=armv8.2-a' conflicts with '-march=armv8-a'
switch
after:
$ aarch64-unknown-linux-gnu-gcc -S -O3 -march=armv8-a+sve
-mcpu=cortex-a76 foo.c
cc1: warning: switch '-mcpu=cortex-a76' conflicts with
'-march=armv8-a+sve' switch
gcc/ChangeLog:
2020-02-27 Joel Hutton <joel.hut...@arm.com>
PR target/87612
* config/aarch64/aarch64.c (aarch64_override_options): Fix
misleading warning string.
Newline after the Name/email line in the ChangeLog.
This is okay for trunk.
Do you have commit access?
If not, please follow the steps at
https://gcc.gnu.org/gitwrite.html#authenticated listing myself as approver.
Then you can commit this yourself.
Thanks,
Kyrill