aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-05-31 19:09:25 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2019-05-31 19:16:18 +0200
commitbe028b543f48577f762ffb26e79e2a482b4ff15d (patch)
treee0a436fbf745b9f532c872724418979f779363d9 /Makefile
parente10870c3da5b28a76c0c0d283c1a0beb09cd7950 (diff)
downloadcompcert-kvx-be028b543f48577f762ffb26e79e2a482b4ff15d.tar.gz
compcert-kvx-be028b543f48577f762ffb26e79e2a482b4ff15d.zip
Type inference and type checking for Cminor
This module is similar to RTLtyping: it performs type inference and type checking, but on the Cminor intermediate representation rather than the RTL IR. For each function, it returns a mapping from variables to types. Its first use will be if-conversion optimization.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8ab6b5b0..369fd4cd 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ COMMON=Errors.v AST.v Linking.v \
# Back-end modules (in backend/, $(ARCH)/)
BACKEND=\
- Cminor.v Op.v CminorSel.v \
+ Cminor.v Cminortyping.v Op.v CminorSel.v \
SelectOp.v SelectDiv.v SplitLong.v SelectLong.v Selection.v \
SelectOpproof.v SelectDivproof.v SplitLongproof.v \
SelectLongproof.v Selectionproof.v \