Introduce perma-unstable wasm-c-abi
flag
This commit is contained in:
parent
ed5c3bc397
commit
d0dc94334b
@ -31,7 +31,7 @@ use rustc_span::Span;
|
|||||||
use rustc_target::abi::{
|
use rustc_target::abi::{
|
||||||
self, call::FnAbi, Align, HasDataLayout, Size, TargetDataLayout, WrappingRange,
|
self, call::FnAbi, Align, HasDataLayout, Size, TargetDataLayout, WrappingRange,
|
||||||
};
|
};
|
||||||
use rustc_target::spec::{HasTargetSpec, Target};
|
use rustc_target::spec::{HasTargetSpec, HasWasmCAbiOpt, Target, WasmCAbi};
|
||||||
|
|
||||||
use crate::common::{type_is_pointer, SignType, TypeReflection};
|
use crate::common::{type_is_pointer, SignType, TypeReflection};
|
||||||
use crate::context::CodegenCx;
|
use crate::context::CodegenCx;
|
||||||
@ -2349,6 +2349,12 @@ impl<'tcx> HasTargetSpec for Builder<'_, '_, 'tcx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@ use rustc_span::{source_map::respan, Span};
|
|||||||
use rustc_target::abi::{
|
use rustc_target::abi::{
|
||||||
call::FnAbi, HasDataLayout, PointeeInfo, Size, TargetDataLayout, VariantIdx,
|
call::FnAbi, HasDataLayout, PointeeInfo, Size, TargetDataLayout, VariantIdx,
|
||||||
};
|
};
|
||||||
use rustc_target::spec::{HasTargetSpec, Target, TlsModel};
|
use rustc_target::spec::{HasTargetSpec, HasWasmCAbiOpt, Target, TlsModel, WasmCAbi};
|
||||||
|
|
||||||
use crate::callee::get_fn;
|
use crate::callee::get_fn;
|
||||||
use crate::common::SignType;
|
use crate::common::SignType;
|
||||||
@ -555,6 +555,12 @@ impl<'gcc, 'tcx> HasTargetSpec for CodegenCx<'gcc, 'tcx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<'gcc, 'tcx> HasWasmCAbiOpt for CodegenCx<'gcc, 'tcx> {
|
||||||
|
fn wasm_c_abi_opt(&self) -> WasmCAbi {
|
||||||
|
self.tcx.sess.opts.unstable_opts.wasm_c_abi
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<'gcc, 'tcx> LayoutOfHelpers<'tcx> for CodegenCx<'gcc, 'tcx> {
|
impl<'gcc, 'tcx> LayoutOfHelpers<'tcx> for CodegenCx<'gcc, 'tcx> {
|
||||||
type LayoutOfResult = TyAndLayout<'tcx>;
|
type LayoutOfResult = TyAndLayout<'tcx>;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user