Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ jobs:
- uses: ./.github/actions/install-rust

- run: rustup component add clippy
- run: cargo clippy --workspace --all-targets
- run: cargo clippy --workspace --all-targets --features p3,component-model-async

# Similar to `micro_checks` but where we need to install some more state
# (e.g. Android NDK) and we haven't factored support for those things out into
Expand Down
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ examples/.cache
*.smt2
cranelift/isle/veri/veri_engine/test_output
crates/explorer/node_modules
tests/all/pulley_provenance_test.cwasm
tests/all/pulley_provenance_test_component.cwasm
tests/all/pulley_provenance_test_async_component.cwasm
*.cwasm
/artifacts
testcase*.wat
testcase*.wasm
Expand Down
1 change: 1 addition & 0 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 cranelift/codegen/src/inline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ fn inline_one(
// terminator, so do a quick pass over the inlined blocks and remove any
// empty blocks from the caller's layout.
for block in entity_map.iter_inlined_blocks(func) {
if func.layout.first_inst(block).is_none() {
if func.layout.is_block_inserted(block) && func.layout.first_inst(block).is_none() {
func.layout.remove_block(block);
}
}
Expand Down
Loading