From 9d86f2dc4f1d2e4e1a991be82384bbdb310f0618 Mon Sep 17 00:00:00 2001 From: Tom Eccles Date: Mon, 12 Dec 2022 21:46:35 +0000 Subject: [PATCH] [flang] skip fast_math linker test on powerpc #3 Another attempt to skip the fast-math linker test on powerpc. The test has to be skipped because there is no crtfastmath.o on powerpc. Change recommended by Amy Kwan . See https://reviews.llvm.org/D138675 --- flang/test/Driver/fast_math.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flang/test/Driver/fast_math.f90 b/flang/test/Driver/fast_math.f90 index 5d3a341..46b8170 100644 --- a/flang/test/Driver/fast_math.f90 +++ b/flang/test/Driver/fast_math.f90 @@ -58,7 +58,7 @@ ! Check that -ffast-math causes us to link to crtfastmath.o ! UNSUPPORTED: system-windows -! UNSUPPORTED: target={{p(ower)?pc.*}} +! UNSUPPORTED: powerpc-registered-target ! RUN: %flang -ffast-math -### %s -o %t 2>&1 \ ! RUN: | FileCheck --check-prefix=CHECK-CRT %s ! CHECK-CRT: {{crtbegin.?\.o}} -- 2.7.4