Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Nov 29, 2024
1 parent 324b8ee commit 68692f6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion compiler/noirc_evaluator/src/ssa/ir/instruction/call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ pub(super) fn simplify_call(
unreachable!("ICE: Intrinsic::ToRadix return type must be array")
};
constant_to_radix(endian, field, radix, limb_count, |values| {
make_constant_array(dfg, values.into_iter(), Type::unsigned(8), block, call_stack)
make_constant_array(
dfg,
values.into_iter(),
Type::unsigned(8),
block,
call_stack,
)
})
} else {
SimplifyResult::None
Expand Down

0 comments on commit 68692f6

Please sign in to comment.