diff options
author | Pat Haugen <pthaugen@us.ibm.com> | 2017-10-13 16:05:53 +0000 |
---|---|---|
committer | Pat Haugen <pthaugen@gcc.gnu.org> | 2017-10-13 16:05:53 +0000 |
commit | 96ec425f5d90f64e40581e073d33cec1ee7369a0 (patch) | |
tree | be29a9608d0c08b392078b6aa244f353865cbb30 /gcc | |
parent | b015bcbb16af842c806fcba44252a01038b32ef6 (diff) | |
download | gcc-96ec425f5d90f64e40581e073d33cec1ee7369a0.zip gcc-96ec425f5d90f64e40581e073d33cec1ee7369a0.tar.gz gcc-96ec425f5d90f64e40581e073d33cec1ee7369a0.tar.bz2 |
rs6000.c (rs6000_builtin_vectorization_cost): Remove TARGET_P9_VECTOR code for unaligned_load case.
* config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Remove
TARGET_P9_VECTOR code for unaligned_load case.
From-SVN: r253731
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fefac6e..00be94f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-10-13 Pat Haugen <pthaugen@us.ibm.com> + + * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Remove + TARGET_P9_VECTOR code for unaligned_load case. + 2017-10-13 Jan Hubicka <hubicka@ucw.cz> * cfghooks.c (verify_flow_info): Check that edge probabilities are diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index e6e254a..b08cd31 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -5419,9 +5419,6 @@ rs6000_builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost, return 3; case unaligned_load: - if (TARGET_P9_VECTOR) - return 3; - if (TARGET_EFFICIENT_UNALIGNED_VSX) return 1; |