aboutsummaryrefslogtreecommitdiff
path: root/test/Driver/mips-float.c
diff options
context:
space:
mode:
authorSimon Atanasyan <satanasyan@mips.com>2012-04-06 17:51:49 +0000
committerSimon Atanasyan <satanasyan@mips.com>2012-04-06 17:51:49 +0000
commitaba3f0f8658b099fabd17f29f67bf6dd8ee5ddfd (patch)
tree68ed875b312acbc86229fa7d68c52c94920df215 /test/Driver/mips-float.c
parent9f314374672a9c50d45ab60b96718cfbab06f484 (diff)
MIPS: Move tests check float ABI macros definitions to the more appropriate place.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154184 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver/mips-float.c')
-rw-r--r--test/Driver/mips-float.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Driver/mips-float.c b/test/Driver/mips-float.c
index 4a666eefaf..8737272653 100644
--- a/test/Driver/mips-float.c
+++ b/test/Driver/mips-float.c
@@ -40,20 +40,3 @@
// RUN: -target mips-linux-gnu -mfloat-abi=single \
// RUN: | FileCheck --check-prefix=CHECK-ABI-SINGLE %s
// CHECK-ABI-SINGLE: "-target-feature" "+single-float"
-//
-// Let's check float ABI related macros.
-//
-// -mfloat-abi=hard
-// RUN: %clang -c %s -dM -E 2>&1 \
-// RUN: -target mips-linux-gnu -mfloat-abi=hard \
-// RUN: | grep "#define __mips_hard_float 1"
-//
-// -mfloat-abi=soft
-// RUN: %clang -c %s -dM -E 2>&1 \
-// RUN: -target mips-linux-gnu -mfloat-abi=soft \
-// RUN: | grep "#define __mips_soft_float 1"
-//
-// -mfloat-abi=single
-// RUN: %clang -c %s -dM -E 2>&1 \
-// RUN: -target mips-linux-gnu -mfloat-abi=single \
-// RUN: | grep "#define __mips_single_float 1"