Revision r280064 adds new options -fdenormal-fp-math and passes through option

-ffast-math to CC1, but it included a wrong llvm regression tests which was
removed in r280065.  Although regression test noexceptionsfpmath.c makes sure
-fno-trapping-math ends up as a function attribute, this adds a test that
explicitly checks the driver output for -fno-trapping-math.

llvm-svn: 280227
This commit is contained in:
Sjoerd Meijer 2016-08-31 12:31:03 +00:00
parent a6c9744a6c
commit f2392f69d5
1 changed files with 3 additions and 0 deletions

View File

@ -232,12 +232,15 @@
// CHECK-NO-UNSAFE-MATH-NOT: "-menable-unsafe-fp-math"
// CHECK-NO-UNSAFE-MATH: "-o"
//
// RUN: %clang -### -ftrapping-math -fno-trapping-math -c %s 2>&1 \
// RUN: | FileCheck --check-prefix=CHECK-NO-TRAPPING-MATH %s
// RUN: %clang -### -fdenormal-fp-math=ieee -c %s 2>&1 \
// RUN: | FileCheck --check-prefix=CHECK-FP-DENORMAL-IEEE %s
// RUN: %clang -### -fdenormal-fp-math=preserve-sign -c %s 2>&1 \
// RUN: | FileCheck --check-prefix=CHECK-FP-DENORMAL-PS %s
// RUN: %clang -### -fdenormal-fp-math=positive-zero -c %s 2>&1 \
// RUN: | FileCheck --check-prefix=CHECK-FP-DENORMAL-PZ %s
// CHECK-NO-TRAPPING-MATH: "-fno-trapping-math"
// CHECK-FP-DENORMAL-IEEE: "-fdenormal-fp-math=ieee"
// CHECK-FP-DENORMAL-PS: "-fdenormal-fp-math=preserve-sign"
// CHECK-FP-DENORMAL-PZ: "-fdenormal-fp-math=positive-zero"