aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/RTLBlockgen.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/RTLBlockgen.v
parent6370fff13320a70c852c3faa78f17dadbfb1aeb8 (diff)
downloadvericert-929ca73f8aed8c122b93527c545a38dd82d52647.tar.gz
vericert-929ca73f8aed8c122b93527c545a38dd82d52647.zip
Fix imports to remove warnings when compiling
Diffstat (limited to 'src/hls/RTLBlockgen.v')
-rw-r--r--src/hls/RTLBlockgen.v12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/hls/RTLBlockgen.v b/src/hls/RTLBlockgen.v
index 6b3e9c3..889e104 100644
--- a/src/hls/RTLBlockgen.v
+++ b/src/hls/RTLBlockgen.v
@@ -16,13 +16,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*)
-From compcert Require
- RTL.
-From compcert Require Import
- AST
- Maps.
-From vericert Require Import
- RTLBlock.
+Require compcert.backend.RTL.
+Require Import compcert.common.AST.
+Require Import compcert.lib.Maps.
+
+Require Import vericert.hls.RTLBlock.
Parameter partition : RTL.function -> Errors.res function.