Browse Source

Bump regalloc in Cranelift (#3558)

This regalloc version contains a performance fix around creation of
very large logs that might be unused.
pull/3563/head
Benjamin Bouvier 3 years ago
committed by GitHub
parent
commit
9f6efe0e22
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Cargo.lock
  2. 2
      cranelift/codegen/Cargo.toml

4
Cargo.lock

@ -2360,9 +2360,9 @@ dependencies = [
[[package]]
name = "regalloc"
version = "0.0.32"
version = "0.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6304468554ed921da3d32c355ea107b8d13d7b8996c3adfb7aab48d3bc321f4"
checksum = "7d808cff91dfca7b239d40b972ba628add94892b1d9e19a842aedc5cfae8ab1a"
dependencies = [
"log",
"rustc-hash",

2
cranelift/codegen/Cargo.toml

@ -23,7 +23,7 @@ serde = { version = "1.0.94", features = ["derive"], optional = true }
bincode = { version = "1.2.1", optional = true }
gimli = { version = "0.25.0", default-features = false, features = ["write"], optional = true }
smallvec = { version = "1.6.1" }
regalloc = { version = "0.0.32" }
regalloc = { version = "0.0.33" }
souper-ir = { version = "2.1.0", optional = true }
# It is a goal of the cranelift-codegen crate to have minimal external dependencies.
# Please don't add any unless they are essential to the task of creating binary

Loading…
Cancel
Save