From c97b11c24e92b8ca1a9c71f24988977d89656f8b Mon Sep 17 00:00:00 2001 From: Sjoerd Meijer Date: Mon, 3 Oct 2016 13:12:20 +0000 Subject: [PATCH] This adds a separate file for the fp denormal regression tests. NFC. Differential Revision: https://reviews.llvm.org/D24907 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@283109 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Driver/fast-math.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/Driver/fast-math.c b/test/Driver/fast-math.c index a09a2cebe0..025651d0a3 100644 --- a/test/Driver/fast-math.c +++ b/test/Driver/fast-math.c @@ -234,13 +234,4 @@ // // 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" -- 2.40.0