Skip to content

Commit 2775e9e

Browse files
committed
Update
1 parent eb2a635 commit 2775e9e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2239,9 +2239,9 @@ dependencies = [
22392239

22402240
[[package]]
22412241
name = "mimallocate-sys"
2242-
version = "0.1.0"
2242+
version = "0.1.1"
22432243
source = "registry+https://github.com/rust-lang/crates.io-index"
2244-
checksum = "40f7fce1d2b85a787a1dc11f59afab35d1fee036a5267b7e1d2013de1ba6eb83"
2244+
checksum = "e3a60aa763b2d53b874b186ecd188c6241b9a8eb8b1deae51190d68915e99d90"
22452245
dependencies = [
22462246
"cc",
22472247
]

compiler/rustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rustc_driver = { path = "../rustc_driver" }
1111
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
1212

1313
[dependencies.mimallocate-sys]
14-
version = '0.1.0'
14+
version = '0.1.1'
1515
optional = true
1616

1717
[features]

compiler/rustc/src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ fn main() {
4646
// linking, so we need to explicitly depend on the function.
4747
#[cfg(target_os = "macos")]
4848
#[used]
49-
static _F7: unsafe extern "C" fn() =
50-
mimallocate_sys::_mi_macos_override_malloc;
49+
static _F7: unsafe extern "C" fn() = mimallocate_sys::_mi_macos_override_malloc;
5150
}
5251

5352
rustc_driver::set_sigpipe_handler();

0 commit comments

Comments
 (0)