blob: ab21e2e7ff4dec2297ebfb68ccfdc8632b36efd1 [file] [log] [blame]
Nick Kledzikad160c02009-09-14 23:26:56 +00001//===-- floatsisfvfp_test.c - Test __floatsisfvfp -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnant5b791f62010-11-16 22:13:33 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Nick Kledzikad160c02009-09-14 23:26:56 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file tests __floatsisfvfp for the compiler_rt library.
11//
12//===----------------------------------------------------------------------===//
13
Derek Schuffeb0ebc32015-04-24 15:45:57 +000014#include "int_lib.h"
Nick Kledzikad160c02009-09-14 23:26:56 +000015#include <stdio.h>
16#include <stdlib.h>
17#include <math.h>
18
19
Derek Schuffeb0ebc32015-04-24 15:45:57 +000020extern COMPILER_RT_ABI float __floatsisfvfp(int a);
Nick Kledzikad160c02009-09-14 23:26:56 +000021
22#if __arm__
23int test__floatsisfvfp(int a)
24{
25 float actual = __floatsisfvfp(a);
26 float expected = a;
27 if (actual != expected)
28 printf("error in test__floatsisfvfp(%d) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
31}
32#endif
33
34int main()
35{
36#if __arm__
37 if (test__floatsisfvfp(0))
38 return 1;
39 if (test__floatsisfvfp(1))
40 return 1;
41 if (test__floatsisfvfp(-1))
42 return 1;
43 if (test__floatsisfvfp(0x7FFFFFFF))
44 return 1;
45 if (test__floatsisfvfp(0x80000000))
46 return 1;
Joerg Sonnenbergerd9bcddd2011-05-29 21:43:29 +000047#else
48 printf("skipped\n");
Nick Kledzikad160c02009-09-14 23:26:56 +000049#endif
50 return 0;
51}