aboutsummaryrefslogtreecommitdiffstats
path: root/cfrontend
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2017-10-20 10:34:31 +0200
committerGitHub <noreply@github.com>2017-10-20 10:34:31 +0200
commitb4f59c4773206fbdf850611e6bbac1767d459dd5 (patch)
tree407ae2638eeca041e843c2fbbbaa75fd595df02e /cfrontend
parent6a010b47b216c5a6b6e85abcfbba5339bab15dd6 (diff)
parentb26b8d219230ae912e3860dc906d34169af2a5c8 (diff)
downloadcompcert-kvx-b4f59c4773206fbdf850611e6bbac1767d459dd5.tar.gz
compcert-kvx-b4f59c4773206fbdf850611e6bbac1767d459dd5.zip
Merge pull request #191 from sigurdschneider/master
Ensure FunInd or Recdef is imported if functional induction is used. This is necessary for Coq 8.7.0.
Diffstat (limited to 'cfrontend')
-rw-r--r--cfrontend/Cexec.v1
-rw-r--r--cfrontend/SimplExprproof.v1
2 files changed, 2 insertions, 0 deletions
diff --git a/cfrontend/Cexec.v b/cfrontend/Cexec.v
index bea579fc..823d2542 100644
--- a/cfrontend/Cexec.v
+++ b/cfrontend/Cexec.v
@@ -12,6 +12,7 @@
(** Animating the CompCert C semantics *)
+Require Import FunInd.
Require Import Axioms Classical.
Require Import String Coqlib Decidableplus.
Require Import Errors Maps Integers Floats.
diff --git a/cfrontend/SimplExprproof.v b/cfrontend/SimplExprproof.v
index d85fb271..ee1df409 100644
--- a/cfrontend/SimplExprproof.v
+++ b/cfrontend/SimplExprproof.v
@@ -12,6 +12,7 @@
(** Correctness proof for expression simplification. *)
+Require Import FunInd.
Require Import Coqlib Maps Errors Integers.
Require Import AST Linking.
Require Import Values Memory Events Globalenvs Smallstep.