From 2b35511350454dd22997f129ee529e3fdb129ac2 Mon Sep 17 00:00:00 2001 From: "Kevin P. Neal" Date: Mon, 6 Jul 2020 14:41:15 -0400 Subject: [PATCH] [FPEnv][Clang][Driver] Failing tests are now expected failures only on PowerPC Mark these tests as only failing on PowerPC. Avoids unexpected passes on other bots. Fingers crossed. Differential Revision: https://reviews.llvm.org/D80952 --- clang/test/CodeGen/fpconstrained-cmp-double.c | 2 +- clang/test/CodeGen/fpconstrained-cmp-float.c | 2 +- clang/test/CodeGen/fpconstrained.c | 2 +- clang/test/CodeGen/fpconstrained.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clang/test/CodeGen/fpconstrained-cmp-double.c b/clang/test/CodeGen/fpconstrained-cmp-double.c index d2744d283c84..7c4d04677842 100644 --- a/clang/test/CodeGen/fpconstrained-cmp-double.c +++ b/clang/test/CodeGen/fpconstrained-cmp-double.c @@ -6,7 +6,7 @@ // RUN: %clang_cc1 -frounding-math -ffp-exception-behavior=maytrap -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=MAYTRAP // Disabled until constrained floating point is completed for PowerPC. -// XFAIL: * +// XFAIL: powerpc, powerpc64, powerpc64le _Bool QuietEqual(double f1, double f2) { // CHECK-LABEL: define {{.*}}i1 @QuietEqual(double %f1, double %f2) diff --git a/clang/test/CodeGen/fpconstrained-cmp-float.c b/clang/test/CodeGen/fpconstrained-cmp-float.c index 2403e542b929..964725080a7e 100644 --- a/clang/test/CodeGen/fpconstrained-cmp-float.c +++ b/clang/test/CodeGen/fpconstrained-cmp-float.c @@ -6,7 +6,7 @@ // RUN: %clang_cc1 -frounding-math -ffp-exception-behavior=maytrap -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=MAYTRAP // Disabled until constrained floating point is completed for PowerPC. -// XFAIL: * +// XFAIL: powerpc, powerpc64, powerpc64le _Bool QuietEqual(float f1, float f2) { // CHECK-LABEL: define {{.*}}i1 @QuietEqual(float %f1, float %f2) diff --git a/clang/test/CodeGen/fpconstrained.c b/clang/test/CodeGen/fpconstrained.c index e268af46a2de..3ce9b6fa1a55 100644 --- a/clang/test/CodeGen/fpconstrained.c +++ b/clang/test/CodeGen/fpconstrained.c @@ -7,7 +7,7 @@ // RUN: %clang_cc1 -ffast-math -ffp-contract=fast -ffp-exception-behavior=maytrap -emit-llvm -o - %s | FileCheck %s -check-prefix=MAYTRAP // Disabled until constrained floating point is completed for PowerPC. -// XFAIL: * +// XFAIL: powerpc, powerpc64, powerpc664le float f0, f1, f2; diff --git a/clang/test/CodeGen/fpconstrained.cpp b/clang/test/CodeGen/fpconstrained.cpp index 8db68533d37c..39634dd96994 100644 --- a/clang/test/CodeGen/fpconstrained.cpp +++ b/clang/test/CodeGen/fpconstrained.cpp @@ -7,7 +7,7 @@ // RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -ffp-exception-behavior=maytrap -emit-llvm -o - %s | FileCheck %s -check-prefix=MAYTRAP // Disabled until constrained floating point is completed for PowerPC. -// XFAIL: * +// XFAIL: powerpc, powerpc64, powerpc64le float f0, f1, f2;