mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
Move target check into allow_altivec_tests
Pedro pointed out that only PPC can possibly have altivec, so we can move the target check into allow_altivec_tests.
This commit is contained in:
@ -22,7 +22,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
require allow_altivec_tests
|
require allow_altivec_tests
|
||||||
require {istarget "powerpc*"}
|
|
||||||
|
|
||||||
standard_testfile
|
standard_testfile
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
require allow_altivec_tests
|
require allow_altivec_tests
|
||||||
require {istarget "powerpc*"}
|
|
||||||
|
|
||||||
standard_testfile
|
standard_testfile
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
# 0 to 31 in each of the 16 bytes of each corresponding register, and
|
# 0 to 31 in each of the 16 bytes of each corresponding register, and
|
||||||
# we then check if gdb sees these same values.
|
# we then check if gdb sees these same values.
|
||||||
|
|
||||||
require allow_altivec_tests {[istarget "powerpc*"}
|
require allow_altivec_tests
|
||||||
|
|
||||||
standard_testfile
|
standard_testfile
|
||||||
|
|
||||||
|
@ -3471,6 +3471,11 @@ gdb_caching_proc allow_altivec_tests {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if {![istarget powerpc*]} {
|
||||||
|
verbose "$me: PPC target required, returning 0" 2
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
# Make sure we have a compiler that understands altivec.
|
# Make sure we have a compiler that understands altivec.
|
||||||
if [test_compiler_info gcc*] {
|
if [test_compiler_info gcc*] {
|
||||||
set compile_flags "additional_flags=-maltivec"
|
set compile_flags "additional_flags=-maltivec"
|
||||||
|
Reference in New Issue
Block a user