Update Cargo.lock and remove duplicated impl

This commit is contained in:
Guillaume Gomez 2024-07-10 13:01:59 +02:00
parent 7cbe50e209
commit 541b32c8ab
2 changed files with 6 additions and 10 deletions

View File

@ -79,16 +79,18 @@ dependencies = [
[[package]] [[package]]
name = "gccjit" name = "gccjit"
version = "2.0.0" version = "2.1.0"
source = "git+https://github.com/rust-lang/gccjit.rs#328cb1b414f67dfa15162ba7a55ed01931f1b219" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62e0ba949ebee07c5cc21f02cb48f28f2c8db7fcbc15fdc5120476a6c43b4636"
dependencies = [ dependencies = [
"gccjit_sys", "gccjit_sys",
] ]
[[package]] [[package]]
name = "gccjit_sys" name = "gccjit_sys"
version = "0.1.0" version = "0.2.0"
source = "git+https://github.com/rust-lang/gccjit.rs#328cb1b414f67dfa15162ba7a55ed01931f1b219" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5bbf85e12c2593772329a9d4e8310271f6706e6045ce4f41b041dd34fba6603"
dependencies = [ dependencies = [
"libc", "libc",
] ]

View File

@ -2369,12 +2369,6 @@ fn wasm_c_abi_opt(&self) -> WasmCAbi {
} }
} }
impl<'tcx> HasWasmCAbiOpt for Builder<'_, '_, 'tcx> {
fn wasm_c_abi_opt(&self) -> WasmCAbi {
self.cx.wasm_c_abi_opt()
}
}
pub trait ToGccComp { pub trait ToGccComp {
fn to_gcc_comparison(&self) -> ComparisonOp; fn to_gcc_comparison(&self) -> ComparisonOp;
} }