Skip to content

Commit 90be409

Browse files
committed
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
2 parents 7f32dd5 + cd4810d commit 90be409

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/rustc_codegen_gcc/src/declare.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ impl<'gcc, 'tcx> CodegenCx<'gcc, 'tcx> {
4040
global
4141
}
4242

43-
pub fn declare_func(&self, name: &str, return_type: Type<'gcc>, params: &[Type<'gcc>], variadic: bool) -> RValue<'gcc> {
43+
/*pub fn declare_func(&self, name: &str, return_type: Type<'gcc>, params: &[Type<'gcc>], variadic: bool) -> RValue<'gcc> {
4444
self.linkage.set(FunctionType::Exported);
4545
let func = declare_raw_fn(self, name, () /*llvm::CCallConv*/, return_type, params, variadic);
4646
// FIXME(antoyo): this is a wrong cast. That requires changing the compiler API.
4747
unsafe { std::mem::transmute(func) }
48-
}
48+
}*/
4949

5050
pub fn declare_global(&self, name: &str, ty: Type<'gcc>, is_tls: bool, link_section: Option<Symbol>) -> LValue<'gcc> {
5151
let global = self.context.new_global(None, GlobalKind::Exported, ty, name);

compiler/rustc_codegen_gcc/src/intrinsic/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ impl<'a, 'gcc, 'tcx> IntrinsicCallMethods<'tcx> for Builder<'a, 'gcc, 'tcx> {
272272
use rustc_target::abi::Abi::*;
273273
let tp_ty = substs.type_at(0);
274274
let layout = self.layout_of(tp_ty).layout;
275-
let use_integer_compare = match layout.abi {
275+
let _use_integer_compare = match layout.abi {
276276
Scalar(_) | ScalarPair(_, _) => true,
277277
Uninhabited | Vector { .. } => false,
278278
Aggregate { .. } => {

0 commit comments

Comments
 (0)