aboutsummaryrefslogtreecommitdiff
path: root/test/builtins/Unit/unordsf2vfp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/builtins/Unit/unordsf2vfp_test.c')
-rw-r--r--test/builtins/Unit/unordsf2vfp_test.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/builtins/Unit/unordsf2vfp_test.c b/test/builtins/Unit/unordsf2vfp_test.c
index 3cadc81c708b..712665294cc0 100644
--- a/test/builtins/Unit/unordsf2vfp_test.c
+++ b/test/builtins/Unit/unordsf2vfp_test.c
@@ -1,3 +1,5 @@
+// RUN: %clang_builtins %s %librt -o %t && %run %t
+
//===-- unordsf2vfp_test.c - Test __unordsf2vfp ---------------------------===//
//
// The LLVM Compiler Infrastructure
@@ -19,7 +21,7 @@
extern int __unordsf2vfp(float a, float b);
-#if __arm__
+#if __arm__ && __VFP_FP__
int test__unordsf2vfp(float a, float b)
{
int actual = __unordsf2vfp(a, b);
@@ -33,7 +35,7 @@ int test__unordsf2vfp(float a, float b)
int main()
{
-#if __arm__
+#if __arm__ && __VFP_FP__
if (test__unordsf2vfp(0.0, NAN))
return 1;
if (test__unordsf2vfp(NAN, 1.0))