Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edg-l committed Jan 21, 2025
1 parent 2d0cb7d commit 065f5b8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 144 deletions.
159 changes: 17 additions & 142 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ariadne = { version = "0.5.0", features = ["auto-color"] }
unescaper = "0.1.5"
logos-display = "0.1.3"

melior = { version = "0.20.2", features = ["ods-dialects", "helpers"] }
melior = { version = "0.21.0", features = ["ods-dialects", "helpers"] }
llvm-sys = "191.0.0"
mlir-sys = "0.4.1"
anyhow = "1.0.95"
Expand Down
1 change: 1 addition & 0 deletions src/codegen/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use crate::ir::{
ProgramBody, Rvalue, Span, Ty, TyKind, ValueTree,
};
use crate::session::Session;
use melior::ir::BlockLike;
use melior::{
dialect::{
arith, cf, func,
Expand Down
2 changes: 1 addition & 1 deletion src/ir/lowering.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,7 @@ pub fn lower_type_with_self(
}
Ok(self_ty)
} else {
lower_type(&ctx, ty, module_id)
lower_type(ctx, ty, module_id)
}
}

Expand Down

0 comments on commit 065f5b8

Please sign in to comment.