Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirasistant committed Nov 21, 2024
1 parent 0acc7cf commit ea0e3e8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ impl Context {
mod test {
use std::sync::Arc;

use im::vector;

use crate::ssa::{
function_builder::FunctionBuilder,
ir::{map::Id, types::Type},
Expand Down Expand Up @@ -638,7 +640,7 @@ mod test {
let zero = builder.numeric_constant(0u128, Type::unsigned(64));
let typ = Type::Array(Arc::new(vec![Type::unsigned(64)]), 25);

let array_contents = vec![
let array_contents = vector![
v0, zero, zero, zero, zero, zero, zero, zero, zero, zero, zero, zero, zero, zero, zero,
zero, zero, zero, zero, zero, zero, zero, zero, zero, zero,
];
Expand Down

0 comments on commit ea0e3e8

Please sign in to comment.