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/HTL.v | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'src/hls/HTL.v') diff --git a/src/hls/HTL.v b/src/hls/HTL.v index d1c901f..c8a0041 100644 --- a/src/hls/HTL.v +++ b/src/hls/HTL.v @@ -17,11 +17,20 @@ * along with this program. If not, see . *) -From Coq Require Import FSets.FMapPositive. -From vericert Require Import Vericertlib ValueInt AssocMap Array. -From vericert Require Verilog. -From compcert Require Events Globalenvs Smallstep Integers Values. -From compcert Require Import Maps. +Require Import Coq.FSets.FMapPositive. + +Require compcert.common.Events. +Require compcert.common.Globalenvs. +Require compcert.common.Smallstep. +Require compcert.common.Values. +Require compcert.lib.Integers. +Require Import compcert.lib.Maps. + +Require Import vericert.common.Vericertlib. +Require Import vericert.hls.ValueInt. +Require Import vericert.hls.AssocMap. +Require Import vericert.hls.Array. +Require vericert.hls.Verilog. (** The purpose of the hardware transfer language (HTL) is to create a more hardware-like layout that is still similar to the register transfer language -- cgit