AArch64: Make every option in options.def one line
authorTamar Christina <tamar.christina@arm.com>
Fri, 1 Mar 2019 13:34:14 +0000 (13:34 +0000)
committerTamar Christina <tnfchris@gcc.gnu.org>
Fri, 1 Mar 2019 13:34:14 +0000 (13:34 +0000)
commit1ccd8493516548e4da242b1093754aad323cd400
treef8a0e731518a40a18c6c8eed7eaafda933b7c6fa
parentf2d040abea60db10675e0a5c2f91b7991541df90
AArch64: Make every option in options.def one line

Due to config.gcc all the options need to be on one line because of the grep
lines which would select only the first line of the option.

This causes it not to select the right bits on options that are spread over
multiple lines when the --with-arch configure option is used.  The issue happens
silently and you just get a compiler with an incorrect set of default flags.

This solution just collapses everything back to one line as they were in GCC7.
Unfortunately this does make some lines quite long.

I do have an alternate patch which used the pre-processors to first flatten the
file in config.gcc.  I will send that one out for GCC 10.

gcc/ChangeLog:

PR target/89517
* config/aarch64/aarch64-option-extensions.def (fp, simd, crypto, fp16,
rdma, dotprod, sha2, sha3, sm4, fp16fml, sve): Collapse line.

From-SVN: r269309
gcc/ChangeLog
gcc/config/aarch64/aarch64-option-extensions.def