aboutsummaryrefslogtreecommitdiff
path: root/test/builtins/Unit/floatunssisfvfp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/builtins/Unit/floatunssisfvfp_test.c')
-rw-r--r--test/builtins/Unit/floatunssisfvfp_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/builtins/Unit/floatunssisfvfp_test.c b/test/builtins/Unit/floatunssisfvfp_test.c
index 47f837cc89a8..9d7fb654fd05 100644
--- a/test/builtins/Unit/floatunssisfvfp_test.c
+++ b/test/builtins/Unit/floatunssisfvfp_test.c
@@ -1,3 +1,4 @@
+// RUN: %clang_builtins %s %librt -o %t && %run %t
//===-- floatunssisfvfp_test.c - Test __floatunssisfvfp -------------------===//
//
// The LLVM Compiler Infrastructure
@@ -18,7 +19,7 @@
extern COMPILER_RT_ABI float __floatunssisfvfp(unsigned int a);
-#if __arm__
+#if __arm__ && __VFP_FP__
int test__floatunssisfvfp(unsigned int a)
{
float actual = __floatunssisfvfp(a);
@@ -32,7 +33,7 @@ int test__floatunssisfvfp(unsigned int a)
int main()
{
-#if __arm__
+#if __arm__ && __VFP_FP__
if (test__floatunssisfvfp(0))
return 1;
if (test__floatunssisfvfp(1))