File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/features/cseMachine/java/components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ export class Control extends Visible {
128
128
return `res ${ resInstr . name } ` ;
129
129
case ECE . InstrType . DEREF :
130
130
return 'deref' ;
131
- case ECE . InstrType . COND :
132
- return `cond ` ;
131
+ case ECE . InstrType . BRANCH :
132
+ return `branch ` ;
133
133
case ECE . InstrType . SWITCH :
134
134
return `switch` ;
135
135
default :
@@ -192,7 +192,7 @@ export class Control extends Visible {
192
192
return `Resolve field ${ resInstr . name } of most recently pushed value from stash` ;
193
193
case ECE . InstrType . DEREF :
194
194
return 'Dereference most recently pushed value from stash' ;
195
- case ECE . InstrType . COND :
195
+ case ECE . InstrType . BRANCH :
196
196
return 'Evaluate condition and push either consequent or alternative to stash' ;
197
197
case ECE . InstrType . SWITCH :
198
198
const switchInstr = controlItem as ECE . SwitchInstr ;
You can’t perform that action at this time.
0 commit comments