diff options
author | Andrew Pinski <apinski@cavium.com> | 2017-07-26 21:51:05 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2017-07-26 14:51:05 -0700 |
commit | b29d7591251e27af7ce8394c5a4ce56ff69ca6c4 (patch) | |
tree | e51a7db6070f44b7db5853fc005f72ddaa0a1446 | |
parent | eb08656284916b5bc6b4bfcd5561aa17bdc5ebeb (diff) | |
download | gcc-b29d7591251e27af7ce8394c5a4ce56ff69ca6c4.zip gcc-b29d7591251e27af7ce8394c5a4ce56ff69ca6c4.tar.gz gcc-b29d7591251e27af7ce8394c5a4ce56ff69ca6c4.tar.bz2 |
aarch64.c (thunderx_vector_cost): Fix vec_fp_stmt_cost.
2017-07-26 Andrew Pinski <apinski@cavium.com>
* config/aarch64/aarch64.c (thunderx_vector_cost): Fix
vec_fp_stmt_cost.
From-SVN: r250592
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/aarch64/aarch64.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64407df..4f2b467 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-07-26 Andrew Pinski <apinski@cavium.com> + + * config/aarch64/aarch64.c (thunderx_vector_cost): Fix + vec_fp_stmt_cost. + 2017-07-26 H.J. Lu <hongjiu.lu@intel.com> PR target/81563 diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 9aa59e7..14a9366 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -358,7 +358,7 @@ static const struct cpu_vector_cost thunderx_vector_cost = 3, /* scalar_load_cost */ 1, /* scalar_store_cost */ 4, /* vec_int_stmt_cost */ - 4, /* vec_fp_stmt_cost */ + 1, /* vec_fp_stmt_cost */ 4, /* vec_permute_cost */ 2, /* vec_to_scalar_cost */ 2, /* scalar_to_vec_cost */ |