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