Skip to content

Commit 541b32c

Browse files
Update Cargo.lock and remove duplicated impl
1 parent 7cbe50e commit 541b32c

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

Diff for: compiler/rustc_codegen_gcc/Cargo.lock

+6-4
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,18 @@ dependencies = [
7979

8080
[[package]]
8181
name = "gccjit"
82-
version = "2.0.0"
83-
source = "git+https://github.com/rust-lang/gccjit.rs#328cb1b414f67dfa15162ba7a55ed01931f1b219"
82+
version = "2.1.0"
83+
source = "registry+https://github.com/rust-lang/crates.io-index"
84+
checksum = "62e0ba949ebee07c5cc21f02cb48f28f2c8db7fcbc15fdc5120476a6c43b4636"
8485
dependencies = [
8586
"gccjit_sys",
8687
]
8788

8889
[[package]]
8990
name = "gccjit_sys"
90-
version = "0.1.0"
91-
source = "git+https://github.com/rust-lang/gccjit.rs#328cb1b414f67dfa15162ba7a55ed01931f1b219"
91+
version = "0.2.0"
92+
source = "registry+https://github.com/rust-lang/crates.io-index"
93+
checksum = "a5bbf85e12c2593772329a9d4e8310271f6706e6045ce4f41b041dd34fba6603"
9294
dependencies = [
9395
"libc",
9496
]

Diff for: compiler/rustc_codegen_gcc/src/builder.rs

-6
Original file line numberDiff line numberDiff line change
@@ -2369,12 +2369,6 @@ impl<'tcx> HasWasmCAbiOpt for Builder<'_, '_, 'tcx> {
23692369
}
23702370
}
23712371

2372-
impl<'tcx> HasWasmCAbiOpt for Builder<'_, '_, 'tcx> {
2373-
fn wasm_c_abi_opt(&self) -> WasmCAbi {
2374-
self.cx.wasm_c_abi_opt()
2375-
}
2376-
}
2377-
23782372
pub trait ToGccComp {
23792373
fn to_gcc_comparison(&self) -> ComparisonOp;
23802374
}

0 commit comments

Comments
 (0)