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/Pipeline.v | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'src/hls/Pipeline.v') diff --git a/src/hls/Pipeline.v b/src/hls/Pipeline.v index ea0c32e..7f1485a 100644 --- a/src/hls/Pipeline.v +++ b/src/hls/Pipeline.v @@ -1,7 +1,24 @@ -From compcert Require Import - Maps - AST - RTL. +(* + * Vericert: Verified high-level synthesis. + * Copyright (C) 2020-2021 Yann Herklotz + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + *) + +Require Import compcert.lib.Maps. +Require Import compcert.common.AST. +Require Import compcert.backend.RTL. Parameter pipeline : function -> function. -- cgit