forked from OSchip/llvm-project
[FPEnv][Clang][Driver] Failing tests are now expected failures.
These are now expected failures on PowerPC. They can be reenabled when PowerPC is ready. Differential Revision: https://reviews.llvm.org/D80952
This commit is contained in:
parent
054704082b
commit
bfdafa32a0
|
@ -5,6 +5,9 @@
|
|||
// RUN: %clang_cc1 -frounding-math -ffp-exception-behavior=strict -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=EXCEPT
|
||||
// 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: *
|
||||
|
||||
_Bool QuietEqual(double f1, double f2) {
|
||||
// CHECK-LABEL: define {{.*}}i1 @QuietEqual(double %f1, double %f2)
|
||||
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
// RUN: %clang_cc1 -frounding-math -ffp-exception-behavior=strict -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=EXCEPT
|
||||
// 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: *
|
||||
|
||||
_Bool QuietEqual(float f1, float f2) {
|
||||
// CHECK-LABEL: define {{.*}}i1 @QuietEqual(float %f1, float %f2)
|
||||
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
// RUN: %clang_cc1 -ffast-math -ffp-contract=fast -ffp-exception-behavior=ignore -emit-llvm -o - %s | FileCheck %s -check-prefix=FAST
|
||||
// RUN: %clang_cc1 -ffast-math -ffp-contract=fast -ffp-exception-behavior=strict -emit-llvm -o - %s | FileCheck %s -check-prefix=EXCEPT
|
||||
// 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: *
|
||||
|
||||
float f0, f1, f2;
|
||||
|
||||
void foo() {
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -ffp-exception-behavior=ignore -emit-llvm -o - %s | FileCheck %s -check-prefix=FAST
|
||||
// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -ffp-exception-behavior=strict -emit-llvm -o - %s | FileCheck %s -check-prefix=EXCEPT
|
||||
// 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: *
|
||||
|
||||
float f0, f1, f2;
|
||||
|
||||
template <class>
|
||||
|
|
Loading…
Reference in New Issue