summaryrefslogtreecommitdiff
path: root/test/Unit/fixsfsivfp_test.c
diff options
context:
space:
mode:
authorNick Kledzik <kledzik@apple.com>2009-09-14 23:26:56 +0000
committerNick Kledzik <kledzik@apple.com>2009-09-14 23:26:56 +0000
commit0963c9e8ea7f97732b0fce419fa6f2e96d951969 (patch)
tree160eb55d25c2194d7b82cf1cb038c50e2c2373fa /test/Unit/fixsfsivfp_test.c
parent7b268dc996e9683b634072759eb8537e21284827 (diff)
downloadcompiler-rt-0963c9e8ea7f97732b0fce419fa6f2e96d951969.tar.gz
compiler-rt-0963c9e8ea7f97732b0fce419fa6f2e96d951969.tar.bz2
compiler-rt-0963c9e8ea7f97732b0fce419fa6f2e96d951969.tar.xz
add conversion functions and test cases for ARM
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@81809 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Unit/fixsfsivfp_test.c')
-rw-r--r--test/Unit/fixsfsivfp_test.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/test/Unit/fixsfsivfp_test.c b/test/Unit/fixsfsivfp_test.c
new file mode 100644
index 00000000..19d70b1e
--- /dev/null
+++ b/test/Unit/fixsfsivfp_test.c
@@ -0,0 +1,50 @@
+//===-- fixsfsivfp_test.c - Test __fixsfsivfp -----------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file tests __fixsfsivfp for the compiler_rt library.
+//
+//===----------------------------------------------------------------------===//
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <math.h>
+
+
+extern int __fixsfsivfp(float a);
+
+#if __arm__
+int test__fixsfsivfp(float a)
+{
+ int actual = __fixsfsivfp(a);
+ int expected = a;
+ if (actual != expected)
+ printf("error in test__fixsfsivfp(%f) = %u, expected %u\n",
+ a, actual, expected);
+ return actual != expected;
+}
+#endif
+
+int main()
+{
+#if __arm__
+ if (test__fixsfsivfp(0.0))
+ return 1;
+ if (test__fixsfsivfp(1.0))
+ return 1;
+ if (test__fixsfsivfp(-1.0))
+ return 1;
+ if (test__fixsfsivfp(2147483647.0))
+ return 1;
+ if (test__fixsfsivfp(-2147483648.0))
+ return 1;
+ if (test__fixsfsivfp(65536.0))
+ return 1;
+#endif
+ return 0;
+}