diff options
| author | Christopher Pulte | 2016-10-19 15:49:18 +0100 |
|---|---|---|
| committer | Christopher Pulte | 2016-10-19 15:49:18 +0100 |
| commit | 019ce013a1274cd9c1af13c5f5d33f444de85d88 (patch) | |
| tree | 03d0c1b9afdaa39343a2eb78b73658d6d8533913 /src/lem_interp/sail_impl_base.lem | |
| parent | c5d020885780addd197cb83b0fb9996b564b409f (diff) | |
remove effect list from instruction type
Diffstat (limited to 'src/lem_interp/sail_impl_base.lem')
| -rw-r--r-- | src/lem_interp/sail_impl_base.lem | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lem_interp/sail_impl_base.lem b/src/lem_interp/sail_impl_base.lem index b4f92ec9..4587004f 100644 --- a/src/lem_interp/sail_impl_base.lem +++ b/src/lem_interp/sail_impl_base.lem @@ -810,7 +810,7 @@ end and the potential static effects from the funcl clause for this instruction Follows the form of the instruction in instruction_extractor, but populates the parameters with actual values *) -type instruction = (string * list (string * instr_parm_typ * instruction_field_value) * list base_effect) +type instruction = (string * list (string * instr_parm_typ * instruction_field_value)) let {coq} instructionEqual i1 i2 = match (i1,i2) with | ((i1,parms1,effects1),(i2,parms2,effects2)) -> i1=i2 && parms1 = parms2 && effects1 = effects2 |
