Skip to content

Commit 1eded36

Browse files
committed
Update to Cranelift 0.98
1 parent ebe2825 commit 1eded36

File tree

3 files changed

+34
-36
lines changed

3 files changed

+34
-36
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ crate-type = ["dylib"]
88

99
[dependencies]
1010
# These have to be in sync with each other
11-
cranelift-codegen = { version = "0.97", features = ["unwind", "all-arch"] }
12-
cranelift-frontend = { version = "0.97" }
13-
cranelift-module = { version = "0.97" }
14-
cranelift-native = { version = "0.97" }
15-
cranelift-jit = { version = "0.97", optional = true }
16-
cranelift-object = { version = "0.97" }
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" }
1717
target-lexicon = "0.12.0"
1818
gimli = { version = "0.27.2", default-features = false, features = ["write"]}
1919
object = { version = "0.30.3", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@ fn build_isa(sess: &Session, backend_config: &BackendConfig) -> Arc<dyn isa::Tar
268268
};
269269
flags_builder.set("tls_model", tls_model).unwrap();
270270

271-
flags_builder.set("enable_simd", "true").unwrap();
272-
273271
flags_builder.set("enable_llvm_abi_extensions", "true").unwrap();
274272

275273
use rustc_session::config::OptLevel;

0 commit comments

Comments
 (0)