From 929ca73f8aed8c122b93527c545a38dd82d52647 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 22 Jan 2021 17:41:37 +0000 Subject: Fix imports to remove warnings when compiling --- src/hls/HTLgenspec.v | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'src/hls/HTLgenspec.v') diff --git a/src/hls/HTLgenspec.v b/src/hls/HTLgenspec.v index 2bd1a2a..845b1d5 100644 --- a/src/hls/HTLgenspec.v +++ b/src/hls/HTLgenspec.v @@ -17,10 +17,20 @@ * along with this program. If not, see . *) -From compcert Require RTL Op Maps Errors. -From compcert Require Import Maps Integers. -From vericert Require Import Vericertlib Verilog ValueInt HTL HTLgen AssocMap. -Require Import Lia. +Require Import Coq.micromega.Lia. + +Require compcert.backend.RTL. +Require compcert.common.Errors. +Require Import compcert.lib.Integers. +Require Import compcert.lib.Maps. +Require compcert.verilog.Op. + +Require Import vericert.common.Vericertlib. +Require Import vericert.hls.Verilog. +Require Import vericert.hls.ValueInt. +Require Import vericert.hls.HTL. +Require Import vericert.hls.HTLgen. +Require Import vericert.hls.AssocMap. Hint Resolve Maps.PTree.elements_keys_norepet : htlspec. Hint Resolve Maps.PTree.elements_correct : htlspec. -- cgit