Skip to content
Snippets Groups Projects
Commit 7d11e4d6 authored by Andrew Stubbs's avatar Andrew Stubbs Committed by Andrew Stubbs
Browse files

Fix neon test fails on non-neon configs.

	gcc/testsuite/
	* lib/target-supports.exp
	(check_effective_target_arm_neon_ok_nocache): Don't try to test Neon
	on ARM architures before v7.

From-SVN: r219602
parent 8673b671
No related branches found
No related tags found
No related merge requests found
2015-01-14 Andrew Stubbs <ams@codesourcery.com>
* lib/target-supports.exp
(check_effective_target_arm_neon_ok_nocache): Don't try to test Neon
on ARM architures before v7.
2015-01-14 Andrew MacLeod <amacleod@redhat.com> 2015-01-14 Andrew MacLeod <amacleod@redhat.com>
PR middle-end/59448 PR middle-end/59448
......
...@@ -2592,6 +2592,11 @@ proc check_effective_target_arm_neon_ok_nocache { } { ...@@ -2592,6 +2592,11 @@ proc check_effective_target_arm_neon_ok_nocache { } {
if { [check_no_compiler_messages_nocache arm_neon_ok object { if { [check_no_compiler_messages_nocache arm_neon_ok object {
#include "arm_neon.h" #include "arm_neon.h"
int dummy; int dummy;
/* Avoid the case where a test adds -mfpu=neon, but the toolchain is
configured for -mcpu=arm926ej-s, for example. */
#if __ARM_ARCH < 7
#error Architecture too old for NEON.
#endif
} "$flags"] } { } "$flags"] } {
set et_arm_neon_flags $flags set et_arm_neon_flags $flags
return 1 return 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment