aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-01-26 11:57:58 +0000
committerYann Herklotz <git@yannherklotz.com>2021-01-26 11:57:58 +0000
commitab76275ae54166c5fbf7377a33c5552c49bbb854 (patch)
treed74f3224db836ed16c581698cb71296880f7b6b8
parent9f379aae1e261dde6ba05bac2c14508469bd5e96 (diff)
downloadvericert-kvx-ab76275ae54166c5fbf7377a33c5552c49bbb854.tar.gz
vericert-kvx-ab76275ae54166c5fbf7377a33c5552c49bbb854.zip
Add an inductive to enter the basic block
-rw-r--r--src/hls/RTLPar.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hls/RTLPar.v b/src/hls/RTLPar.v
index 94a1a20..3707b42 100644
--- a/src/hls/RTLPar.v
+++ b/src/hls/RTLPar.v
@@ -130,10 +130,10 @@ Section RELSEM.
end.
Inductive step: state -> trace -> state -> Prop :=
- | exec_bblock_enter:
- forall stack f sp pc rs m rs' m' bb,
+ | exec_bblock_start:
+ forall stack f sp pc rs m bb,
(fn_code f)!pc = Some bb ->
- step (State stack f sp pc rs m) E0 (Block stack f sp bb rs' m')
+ step (State stack f sp pc rs m) E0 (Block stack f sp bb rs m)
| exec_bblock_instr_cons:
forall sp rs m rs' m' stack f bb bbs cfi,
step_instr_list _ ge sp (InstrState rs m) bb (InstrState rs' m') ->