2009-09-12 09:23:48 +08:00
|
|
|
//===-- gtsf2vfp_test.c - Test __gtsf2vfp ---------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:13:33 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2009-09-12 09:23:48 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file tests __gtsf2vfp for the compiler_rt library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
|
|
|
|
extern int __gtsf2vfp(float a, float b);
|
|
|
|
|
|
|
|
#if __arm__
|
|
|
|
int test__gtsf2vfp(float a, float b)
|
|
|
|
{
|
|
|
|
int actual = __gtsf2vfp(a, b);
|
|
|
|
int expected = (a > b) ? 1 : 0;
|
|
|
|
if (actual != expected)
|
|
|
|
printf("error in __gtsf2vfp(%f, %f) = %d, expected %d\n",
|
|
|
|
a, b, actual, expected);
|
|
|
|
return actual != expected;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
#if __arm__
|
|
|
|
if (test__gtsf2vfp(0.0, 0.0))
|
|
|
|
return 1;
|
|
|
|
if (test__gtsf2vfp(1.0, 0.0))
|
|
|
|
return 1;
|
|
|
|
if (test__gtsf2vfp(-1.0, -2.0))
|
|
|
|
return 1;
|
|
|
|
if (test__gtsf2vfp(-2.0, -1.0))
|
|
|
|
return 1;
|
|
|
|
if (test__gtsf2vfp(HUGE_VALF, 1.0))
|
|
|
|
return 1;
|
|
|
|
if (test__gtsf2vfp(1.0, HUGE_VALF))
|
|
|
|
return 1;
|
2011-05-30 05:43:29 +08:00
|
|
|
#else
|
|
|
|
printf("skipped\n");
|
2009-09-12 09:23:48 +08:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|