diff options
Diffstat (limited to 'test/builtins/Unit/fixunssfsivfp_test.c')
-rw-r--r-- | test/builtins/Unit/fixunssfsivfp_test.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/builtins/Unit/fixunssfsivfp_test.c b/test/builtins/Unit/fixunssfsivfp_test.c index c8e45f408b638..c1d8ed77f3855 100644 --- a/test/builtins/Unit/fixunssfsivfp_test.c +++ b/test/builtins/Unit/fixunssfsivfp_test.c @@ -1,3 +1,5 @@ +// RUN: %clang_builtins %s %librt -o %t && %run %t + //===-- fixunssfsivfp_test.c - Test __fixunssfsivfp -----------------------===// // // The LLVM Compiler Infrastructure @@ -18,7 +20,7 @@ extern unsigned int __fixunssfsivfp(float a); -#if __arm__ +#if __arm__ && __VFP_FP__ int test__fixunssfsivfp(float a) { unsigned int actual = __fixunssfsivfp(a); @@ -32,7 +34,7 @@ int test__fixunssfsivfp(float a) int main() { -#if __arm__ +#if __arm__ && __VFP_FP__ if (test__fixunssfsivfp(0.0)) return 1; if (test__fixunssfsivfp(1.0)) |