aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/RTLBlockInstr.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-10-07 19:49:11 +0100
committerYann Herklotz <git@yannherklotz.com>2021-10-07 19:49:11 +0100
commitbcc3050c9120287c48e3c3294e0eea8b99dd61cc (patch)
treec2e7c9be4c9febe88678680179fbd0577ac88411 /src/hls/RTLBlockInstr.v
parent5e74413490019b0909f248ec2e0c331f11be6f5d (diff)
downloadvericert-bcc3050c9120287c48e3c3294e0eea8b99dd61cc.tar.gz
vericert-bcc3050c9120287c48e3c3294e0eea8b99dd61cc.zip
Fix naming and remove warnings
Diffstat (limited to 'src/hls/RTLBlockInstr.v')
-rw-r--r--src/hls/RTLBlockInstr.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hls/RTLBlockInstr.v b/src/hls/RTLBlockInstr.v
index 8d3fde4..5162b38 100644
--- a/src/hls/RTLBlockInstr.v
+++ b/src/hls/RTLBlockInstr.v
@@ -348,9 +348,9 @@ Fixpoint init_regs (vl: list val) (rl: list reg) {struct rl} : regset :=
end.
Record instr_state := mk_instr_state {
- instr_st_regset: regset;
- instr_st_predset: predset;
- instr_st_mem: mem;
+ is_rs: regset;
+ is_ps: predset;
+ is_mem: mem;
}.
Section DEFINITION.