Skip to content
Snippets Groups Projects
Commit dd730fc7 authored by rarbore2's avatar rarbore2
Browse files

Fix creation of intermediate DC IDs in inline substitution

parent 2f6d9505
No related branches found
No related tags found
1 merge request!65Fix creation of intermediate DC IDs in inline substitution
......@@ -216,8 +216,8 @@ fn inline_func(
// as the new references we just made in the first step. We
// actually want to institute all the updates
// *simultaneously*, hence the two step maneuver.
let num_dcs = edit.num_dynamic_constants();
for (dc_a, dc_n) in zip(dcs_a, num_dcs..) {
let first_dc = edit.num_dynamic_constants() + 1;
for (dc_a, dc_n) in zip(dcs_a, first_dc..) {
substitute_dynamic_constants_in_node(
*dc_a,
DynamicConstantID::new(dc_n),
......@@ -225,7 +225,7 @@ fn inline_func(
&mut edit,
);
}
for (dc_n, dc_b) in zip(num_dcs.., dcs_b.iter()) {
for (dc_n, dc_b) in zip(first_dc.., dcs_b.iter()) {
substitute_dynamic_constants_in_node(
DynamicConstantID::new(dc_n),
*dc_b,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment