summaryrefslogtreecommitdiff
path: root/gcc/testsuite/lib
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@adacore.com>2022-04-01 00:34:57 -0300
committerAlexandre Oliva <oliva@gnu.org>2022-04-01 00:34:57 -0300
commitfa79cc4a4332f948317b016e92d88aa616302e1b (patch)
treea8e024da24ae664c0e6d4ac9974cdc266b390e55 /gcc/testsuite/lib
parent57ad4462decf18d2548d4a813698ee8fcfb24b2f (diff)
Test for linking for arm/size-optimization-ieee-[123].c
These tests require a target that supports arm soft-float. The problem is that the test checks for compile-time soft-float support, but they may hit a problem when the linker complains that it can't combine the testcase's object file with hard-float init files and target system libraries. I don't see that the tests actually require linking, and they could be simplified to dg-do assemble, but I figured a link test for soft-float support could be useful, so I added that, and adjusted the tests to require it instead. for gcc/testsuite/ChangeLog * lib/target-supports.exp (check_effective_target_arm_soft_ok_link): New. * gcc.target/arm/size-optimization-ieee-1.c: Use it. * gcc.target/arm/size-optimization-ieee-2.c: Likewise. * gcc.target/arm/size-optimization-ieee-3.c: Likewise.
Diffstat (limited to 'gcc/testsuite/lib')
-rw-r--r--gcc/testsuite/lib/target-supports.exp12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index a1aef0e0a16..ff8edbd3e17 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -3935,6 +3935,18 @@ proc check_effective_target_arm_soft_ok { } {
} "-mfloat-abi=soft"]
}
+# Return 1 if this is an ARM target supporting -mfloat-abi=soft even
+# for linking. Some multilibs may be incompatible with this option,
+# and some linkers may reject incompatible options.
+
+proc check_effective_target_arm_soft_ok_link { } {
+ return [check_no_compiler_messages arm_soft_ok_link executable {
+ #include <stdint.h>
+ int dummy;
+ int main (void) { return 0; }
+ } "-mfloat-abi=soft"]
+}
+
# Return 1 if this is an ARM target supporting -mfpu=vfp with an
# appropriate abi.