| // RUN: %clang_builtins %s %librt -o %t && %run %t |
| // REQUIRES: librt_has_truncdfsf2vfp |
| //===-- truncdfsf2vfp_test.c - Test __truncdfsf2vfp -----------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| // This file tests __truncdfsf2vfp for the compiler_rt library. |
| //===----------------------------------------------------------------------===// |
| extern COMPILER_RT_ABI float __truncdfsf2vfp(double a); |
| #if __arm__ && __VFP_FP__ |
| int test__truncdfsf2vfp(double a) |
| float actual = __truncdfsf2vfp(a); |
| printf("error in test__truncdfsf2vfp(%f) = %f, expected %f\n", |
| return actual != expected; |
| #if __arm__ && __VFP_FP__ |
| if (test__truncdfsf2vfp(0.0)) |
| if (test__truncdfsf2vfp(1.0)) |
| if (test__truncdfsf2vfp(-1.0)) |
| if (test__truncdfsf2vfp(3.1415926535)) |
| if (test__truncdfsf2vfp(123.456)) |