aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/Pipeline.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-01-22 17:41:37 +0000
committerYann Herklotz <git@yannherklotz.com>2021-01-22 17:41:37 +0000
commit929ca73f8aed8c122b93527c545a38dd82d52647 (patch)
tree58ef9d724a3aa15d849563941deae5fe89f78a3f /src/hls/Pipeline.v
parent6370fff13320a70c852c3faa78f17dadbfb1aeb8 (diff)
downloadvericert-929ca73f8aed8c122b93527c545a38dd82d52647.tar.gz
vericert-929ca73f8aed8c122b93527c545a38dd82d52647.zip
Fix imports to remove warnings when compiling
Diffstat (limited to 'src/hls/Pipeline.v')
-rw-r--r--src/hls/Pipeline.v25
1 files changed, 21 insertions, 4 deletions
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 <yann@yannherklotz.com>
+ *
+ * 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 <https://www.gnu.org/licenses/>.
+ *)
+
+Require Import compcert.lib.Maps.
+Require Import compcert.common.AST.
+Require Import compcert.backend.RTL.
Parameter pipeline : function -> function.