Skip to content

Commit 7304f82

Browse files
committed
upd
1 parent e392e9d commit 7304f82

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ license = "Apache-2.0"
1212

1313
[dependencies]
1414
target-lexicon = { version = "0.13.2", features = ["std"] }
15-
thiserror = "2.0.11"
16-
typed-generational-arena = "0.2.6"
15+
thiserror = "2.0.12"
16+
typed-generational-arena = "0.2.9"
1717

1818

1919
[workspace]

irvm-lower/src/llvm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ fn add_block(ctx: &mut FnCtx, block_idx: BlockIdx, name: Option<String>) -> LLVM
13321332
let block_name = CString::new(if block_idx.to_idx() == 0 {
13331333
"entry".to_string()
13341334
} else if let Some(name) = name {
1335-
format!("bb{}", name)
1335+
format!("bb{name}")
13361336
} else {
13371337
format!("bb{}", block_idx.to_idx())
13381338
})

0 commit comments

Comments
 (0)