From b26b8d219230ae912e3860dc906d34169af2a5c8 Mon Sep 17 00:00:00 2001 From: Sigurd Schneider Date: Thu, 20 Jul 2017 11:10:00 +0200 Subject: Ensure FunInd or Recdef is imported if functional induction is used Coq 8.7 does not load FunInd in prelude anymore, so this is necessary. Recdef exports FunInd, so if Recdef is imported, importing FunInd is not required. --- backend/Selectionproof.v | 1 + 1 file changed, 1 insertion(+) (limited to 'backend/Selectionproof.v') diff --git a/backend/Selectionproof.v b/backend/Selectionproof.v index ebc64c6f..69480013 100644 --- a/backend/Selectionproof.v +++ b/backend/Selectionproof.v @@ -12,6 +12,7 @@ (** Correctness of instruction selection *) +Require Import FunInd. Require Import Coqlib Maps. Require Import AST Linking Errors Integers Values Memory Events Globalenvs Smallstep. Require Import Switch Cminor Op CminorSel. -- cgit