use find_inner_choice_instr when appending an indexed clause to an indexed subsequence

This commit is contained in:
Mark Thom
2021-02-03 01:22:13 -07:00
parent e928a0aaea
commit 88f1160e2b

View File

@@ -1001,22 +1001,22 @@ fn append_compiled_clause(
AppendOrPrepend::Append,
);
if lower_bound + 1 == target_pos {
let lower_bound_clause_start = find_inner_choice_instr(
code,
skeleton.clauses[lower_bound].clause_start,
index_loc,
);
let target_pos_clause_start = find_inner_choice_instr(
code,
skeleton.clauses[target_pos - 1].clause_start,
index_loc,
);
if lower_bound + 1 == target_pos {
set_switch_var_offset(
code,
index_loc,
lower_bound_clause_start - index_loc,
target_pos_clause_start - index_loc,
retraction_info,
);
}
skeleton.clauses[target_pos - 1].clause_start
target_pos_clause_start // skeleton.clauses[target_pos - 1].clause_start
}
_ => {
skeleton.clauses[target_pos].opt_arg_index_key += clause_loc;