We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd83fc0 commit df54b8fCopy full SHA for df54b8f
compiler/noirc_evaluator/src/acir/mod.rs
@@ -1392,7 +1392,7 @@ impl<'a> Context<'a> {
1392
// Get operations to call-data parameters are replaced by a get to the call-data-bus array
1393
let call_data =
1394
self.data_bus.call_data.iter().find(|cd| cd.index_map.contains_key(&array)).cloned();
1395
- let value = if let Some(call_data) = call_data {
+ let mut value = if let Some(call_data) = call_data {
1396
let call_data_block = self.ensure_array_is_initialized(call_data.array_id, dfg)?;
1397
let bus_index = self
1398
.acir_context
0 commit comments