aboutsummaryrefslogtreecommitdiff
path: root/test/builtins/Unit/negsf2vfp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/builtins/Unit/negsf2vfp_test.c')
-rw-r--r--test/builtins/Unit/negsf2vfp_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/builtins/Unit/negsf2vfp_test.c b/test/builtins/Unit/negsf2vfp_test.c
index 9e47d89094ce..e15e43c80398 100644
--- a/test/builtins/Unit/negsf2vfp_test.c
+++ b/test/builtins/Unit/negsf2vfp_test.c
@@ -1,3 +1,4 @@
+// RUN: %clang_builtins %s %librt -o %t && %run %t
//===-- negsf2vfp_test.c - Test __negsf2vfp -------------------------------===//
//
// The LLVM Compiler Infrastructure
@@ -19,7 +20,7 @@
extern COMPILER_RT_ABI float __negsf2vfp(float a);
-#if __arm__
+#if __arm__ && __VFP_FP__
int test__negsf2vfp(float a)
{
float actual = __negsf2vfp(a);
@@ -33,7 +34,7 @@ int test__negsf2vfp(float a)
int main()
{
-#if __arm__
+#if __arm__ && __VFP_FP__
if (test__negsf2vfp(1.0))
return 1;
if (test__negsf2vfp(HUGE_VALF))