Skip to content

Commit df54b8f

Browse files
committed
.
1 parent cd83fc0 commit df54b8f

File tree

1 file changed

+1
-1
lines changed
  • compiler/noirc_evaluator/src/acir

1 file changed

+1
-1
lines changed

compiler/noirc_evaluator/src/acir/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ impl<'a> Context<'a> {
13921392
// Get operations to call-data parameters are replaced by a get to the call-data-bus array
13931393
let call_data =
13941394
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 {
1395+
let mut value = if let Some(call_data) = call_data {
13961396
let call_data_block = self.ensure_array_is_initialized(call_data.array_id, dfg)?;
13971397
let bus_index = self
13981398
.acir_context

0 commit comments

Comments
 (0)