Skip to content

Commit 36091c5

Browse files
authoredOct 9, 2023
Rollup merge of rust-lang#116556 - bjorn3:sync_cg_clif-2023-10-09, r=bjorn3
Sync rustc_codegen_cranelift The highlights this time are improved simd and inline asm support, `is_x86_feature_detected!()` returning the actual cpu features when inline asm support is enabled and a couple of bug fixes. r? ``@ghost`` ``@rustbot`` label +A-codegen +A-cranelift +T-compiler +subtree-sync
2 parents e832c5e + 3ed3765 commit 36091c5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1205
-710
lines changed
 

‎compiler/rustc_codegen_cranelift/Cargo.lock

+72-94
Large diffs are not rendered by default.

‎compiler/rustc_codegen_cranelift/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ crate-type = ["dylib"]
88

99
[dependencies]
1010
# These have to be in sync with each other
11-
cranelift-codegen = { version = "0.98", features = ["unwind", "all-arch"] }
12-
cranelift-frontend = { version = "0.98" }
13-
cranelift-module = { version = "0.98" }
14-
cranelift-native = { version = "0.98" }
15-
cranelift-jit = { version = "0.98", optional = true }
16-
cranelift-object = { version = "0.98" }
11+
cranelift-codegen = { version = "0.100", features = ["unwind", "all-arch"] }
12+
cranelift-frontend = { version = "0.100" }
13+
cranelift-module = { version = "0.100" }
14+
cranelift-native = { version = "0.100" }
15+
cranelift-jit = { version = "0.100", optional = true }
16+
cranelift-object = { version = "0.100" }
1717
target-lexicon = "0.12.0"
18-
gimli = { version = "0.27.2", default-features = false, features = ["write"]}
19-
object = { version = "0.30.3", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
18+
gimli = { version = "0.28", default-features = false, features = ["write"]}
19+
object = { version = "0.32", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2020

2121
indexmap = "2.0.0"
2222
libloading = { version = "0.7.3", optional = true }

0 commit comments

Comments
 (0)