diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:02:53 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:02:53 +0000 |
| commit | ab0bf875a5f328a6710f4e48258979ae1bc8da1c (patch) | |
| tree | 66903cf9f73151825893dcc216b04c0930317a10 /test/builtins/Unit/gtdf2vfp_test.c | |
| parent | abacad30a54c59ad437ccf54ec5236a8dd7f3ba9 (diff) | |
Notes
Diffstat (limited to 'test/builtins/Unit/gtdf2vfp_test.c')
| -rw-r--r-- | test/builtins/Unit/gtdf2vfp_test.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/builtins/Unit/gtdf2vfp_test.c b/test/builtins/Unit/gtdf2vfp_test.c index fd54e0b4e59f..e6eb545dbb10 100644 --- a/test/builtins/Unit/gtdf2vfp_test.c +++ b/test/builtins/Unit/gtdf2vfp_test.c @@ -1,3 +1,5 @@ +// RUN: %clang_builtins %s %librt -o %t && %run %t + //===-- gtdf2vfp_test.c - Test __gtdf2vfp ---------------------------------===// // // The LLVM Compiler Infrastructure @@ -19,7 +21,7 @@ extern int __gtdf2vfp(double a, double b); -#if __arm__ +#if __arm__ && __VFP_FP__ int test__gtdf2vfp(double a, double b) { int actual = __gtdf2vfp(a, b); @@ -33,7 +35,7 @@ int test__gtdf2vfp(double a, double b) int main() { -#if __arm__ +#if __arm__ && __VFP_FP__ if (test__gtdf2vfp(0.0, 0.0)) return 1; if (test__gtdf2vfp(1.0, 0.0)) |
