aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/Makefile
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-05-06 08:20:06 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-05-06 08:20:06 +0000
commit9b3388bea495d027aa618118096a8223f6866437 (patch)
tree3d1b1bf3b1e0af9d094b2b04a2dfbfd7d18d1f58 /runtime/Makefile
parentb257a6d283f6f5784cb351856b5dbe8c645a1f6f (diff)
downloadcompcert-kvx-9b3388bea495d027aa618118096a8223f6866437.tar.gz
compcert-kvx-9b3388bea495d027aa618118096a8223f6866437.zip
Support for in64 -> float conversions w/ correct rounding.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2235 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'runtime/Makefile')
-rw-r--r--runtime/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index a2af8d58..cd4e3018 100644
--- a/runtime/Makefile
+++ b/runtime/Makefile
@@ -3,8 +3,8 @@ include ../Makefile.config
CFLAGS=-O1 -g -Wall
INCLUDES=
OBJS=i64_dtos.o i64_dtou.o i64_sar.o i64_sdiv.o i64_shl.o \
- i64_shr.o i64_smod.o i64_stod.o i64_udivmod.o i64_udiv.o \
- i64_umod.o i64_utod.o
+ i64_shr.o i64_smod.o i64_stod.o i64_stof.o \
+ i64_udivmod.o i64_udiv.o i64_umod.o i64_utod.o i64_utof.o
LIB=libcompcert.a
all: $(LIB) $(INCLUDES)