aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/uint64.c
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-03-11 16:28:40 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-03-11 16:28:40 +0000
commit45fc4cc348d2b8c4cc151a5e3ce3483f21a6ef78 (patch)
tree51384cafb70c58f7b380d77a2871d4fbe550c08f /cparser/uint64.c
parenta5b2f37fd69b903dabd44f1f7f19894e62e497d0 (diff)
downloadcompcert-45fc4cc348d2b8c4cc151a5e3ce3483f21a6ef78.tar.gz
compcert-45fc4cc348d2b8c4cc151a5e3ce3483f21a6ef78.zip
Suppress int64_unsigned_to_float, now unused.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2146 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cparser/uint64.c')
-rw-r--r--cparser/uint64.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/cparser/uint64.c b/cparser/uint64.c
index 53966177..15288876 100644
--- a/cparser/uint64.c
+++ b/cparser/uint64.c
@@ -16,11 +16,6 @@
#include <caml/mlvalues.h>
#include <caml/alloc.h>
-value cparser_int64_unsigned_to_float(value v)
-{
- return caml_copy_double((double)((uint64) Int64_val(v)));
-}
-
value cparser_int64_unsigned_div(value v1, value v2)
{
return caml_copy_int64((uint64) Int64_val(v1) / (uint64) Int64_val(v2));