mirror of git://gcc.gnu.org/git/gcc.git
arm: testsuite: fix test for armv6t2 hardware
My previous patch series added a new function to check for armv6t2 compatible hardware. But the test was not correctly implemented and also did not follow the standard naming convention for Arm hw compatibility tests. Fix both of these issues. gcc/testsuite: * lib/target-supports.exp (check_effective_target_arm_arch_v6t2_hw_ok): Rename to... (check_effective_target_arm_arch_v6t2_hw): ... this. Fix checks. * gcc.target/arm/acle/data-intrinsics-armv6.c: Update pre-check. * gcc.target/arm/acle/data-intrinsics-rbit.c: Likewise.
This commit is contained in:
parent
e9fc877f6d
commit
7c16f7a154
|
@ -1,5 +1,5 @@
|
|||
/* { dg-do run } */
|
||||
/* { dg-require-effective-target arm_arch_v6t2_hw_ok } */
|
||||
/* { dg-require-effective-target arm_arch_v6t2_hw } */
|
||||
/* { dg-add-options arm_arch_v6t2 } */
|
||||
|
||||
#include "arm_acle.h"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Test the ACLE data intrinsics existence for specific instruction. */
|
||||
/* { dg-do run } */
|
||||
/* { dg-require-effective-target arm_arch_v6t2_hw_ok } */
|
||||
/* { dg-require-effective-target arm_arch_v6t2_hw } */
|
||||
/* { dg-additional-options "--save-temps -O1" } */
|
||||
/* { dg-add-options arm_arch_v6t2 } */
|
||||
/* { dg-final { check-function-bodies "**" "" "" } } */
|
||||
|
|
|
@ -5607,9 +5607,9 @@ proc check_effective_target_arm_thumb1_cbz_ok {} {
|
|||
# Return 1 if this is an Arm target which supports the Armv6t2 extensions.
|
||||
# This can be either in Arm state or in Thumb state.
|
||||
|
||||
proc check_effective_target_arm_arch_v6t2_hw_ok {} {
|
||||
if [check_effective_target_arm_thumb1_ok] {
|
||||
return [check_no_compiler_messages arm_movt object {
|
||||
proc check_effective_target_arm_arch_v6t2_hw {} {
|
||||
if [check_effective_target_arm_arch_v6t2_ok] {
|
||||
return [check_runtime arm_arch_v6t2 {
|
||||
int
|
||||
main (void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue