Skip to content

Commit

Permalink
fix: fix build after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat committed Oct 19, 2023
1 parent da74790 commit f0eb478
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 4 deletions.
63 changes: 60 additions & 3 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ miden-hir-symbol = { path = "hir-symbol" }
miden-hir-transform = { path = "hir-transform" }
miden-hir-type = { path = "hir-type" }
miden-parsing = "0.1"
miden-frontend-wasm = { path = "frontend-wasm" }

[profile.release]
opt-level = 2
Expand Down
2 changes: 1 addition & 1 deletion hir/src/dataflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ impl DataFlowGraph {
}

pub fn append_block(&mut self, block: Block) {
self.blocks.append(block, BlockData::new());
self.blocks.append(block, BlockData::new(block));
}

/// Creates a new block, inserted into the function layout just after `block`
Expand Down

0 comments on commit f0eb478

Please sign in to comment.