blob: 6f0808abc931a6124605c0a13234f089442d7c51 [file] [log] [blame]
Nick Kledzik3d22a3a2009-09-11 20:13:32 +00001//===-- divdf3vfp_test.c - Test __divdf3vfp -------------------------------===//
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 Kledzik3d22a3a2009-09-11 20:13:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file tests __divdf3vfp for the compiler_rt library.
11//
12//===----------------------------------------------------------------------===//
13
Derek Schuffeb0ebc32015-04-24 15:45:57 +000014#include "int_lib.h"
Nick Kledzik3d22a3a2009-09-11 20:13:32 +000015#include <stdio.h>
16#include <stdlib.h>
17#include <math.h>
18
19
20#if __arm__
Derek Schuffeb0ebc32015-04-24 15:45:57 +000021extern COMPILER_RT_ABI double __divdf3vfp(double a, double b);
Nick Kledzik3d22a3a2009-09-11 20:13:32 +000022
23int test__divdf3vfp(double a, double b)
24{
25 double actual = __divdf3vfp(a, b);
26 double expected = a / b;
27 if (actual != expected)
28 printf("error in test__divdf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
31}
32#endif
33
34int main()
35{
36#if __arm__
37 if (test__divdf3vfp(1.0, 1.0))
38 return 1;
39 if (test__divdf3vfp(12345.678, 1.23))
40 return 1;
41 if (test__divdf3vfp(-10.0, 0.25))
42 return 1;
43 if (test__divdf3vfp(10.0, -2.0))
44 return 1;
Joerg Sonnenbergerd9bcddd2011-05-29 21:43:29 +000045#else
46 printf("skipped\n");
Nick Kledzik3d22a3a2009-09-11 20:13:32 +000047#endif
48 return 0;
49}