[arm] PR target/82518: Return false in ARRAY_MODE_SUPPORTED_P for BYTES_BIG_ENDIAN followup

PR target/82518
	* lib/target-supports.exp (check_effective_target_vect_load_lanes):
	Use check_effective_target_arm_little_endian.

From-SVN: r259700
This commit is contained in:
Kyrylo Tkachov 2018-04-27 08:56:02 +00:00 committed by Kyrylo Tkachov
parent b4c0db2578
commit d318d551b3
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2018-04-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR target/82518
* lib/target-supports.exp (check_effective_target_vect_load_lanes):
Use check_effective_target_arm_little_endian.
2018-04-27 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/85529

View File

@ -6589,7 +6589,7 @@ proc check_effective_target_vect_load_lanes { } {
} else {
set et_vect_load_lanes 0
# We don't support load_lanes correctly on big-endian arm.
if { ([istarget arm-*-*] && [check_effective_target_arm_neon_ok])
if { ([check_effective_target_arm_little_endian] && [check_effective_target_arm_neon_ok])
|| [istarget aarch64*-*-*] } {
set et_vect_load_lanes 1
}