mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
testsuite: Fix default on arm_v8_3a_fp16_complex_neon_hw [PR124236]
check_effective_target_arm_v8_3a_complex_neon_hw was return 1 instead of 0 whenever armv8.3-a wasn't supported. This fixes it. gcc/testsuite/ChangeLog: PR target/124236 * lib/target-supports.exp (check_effective_target_arm_v8_3a_complex_neon_hw): Fix default value.
This commit is contained in:
@@ -13892,7 +13892,7 @@ proc add_options_for_arm_v8_3a_fp16_complex_neon { flags } {
|
||||
|
||||
proc check_effective_target_arm_v8_3a_complex_neon_hw { } {
|
||||
if { ![check_effective_target_arm_v8_3a_complex_neon_ok] } {
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
return [check_runtime arm_v8_3a_complex_neon_hw_available {
|
||||
#include "arm_neon.h"
|
||||
|
||||
Reference in New Issue
Block a user