support for mips64r6 as a target_arch value
This commit is contained in:
parent
c44324a4fe
commit
c6e03cd951
18 changed files with 20 additions and 10 deletions
|
@ -695,6 +695,7 @@ impl<'a, Ty> FnAbi<'a, Ty> {
|
|||
"m68k" => m68k::compute_abi_info(self),
|
||||
"mips" => mips::compute_abi_info(cx, self),
|
||||
"mips64" => mips64::compute_abi_info(cx, self),
|
||||
"mips64r6" => mips64::compute_abi_info(cx, self),
|
||||
"powerpc" => powerpc::compute_abi_info(self),
|
||||
"powerpc64" => powerpc64::compute_abi_info(cx, self),
|
||||
"s390x" => s390x::compute_abi_info(cx, self),
|
||||
|
|
|
@ -240,6 +240,7 @@ impl FromStr for InlineAsmArch {
|
|||
"loongarch64" => Ok(Self::LoongArch64),
|
||||
"mips" => Ok(Self::Mips),
|
||||
"mips64" => Ok(Self::Mips64),
|
||||
"mips64r6" => Ok(Self::Mips64),
|
||||
"s390x" => Ok(Self::S390x),
|
||||
"spirv" => Ok(Self::SpirV),
|
||||
"wasm32" => Ok(Self::Wasm32),
|
||||
|
|
|
@ -6,7 +6,7 @@ pub fn target() -> Target {
|
|||
llvm_target: "mipsisa64r6-unknown-linux-gnuabi64".into(),
|
||||
pointer_width: 64,
|
||||
data_layout: "E-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128".into(),
|
||||
arch: "mips64".into(),
|
||||
arch: "mips64r6".into(),
|
||||
options: TargetOptions {
|
||||
abi: "abi64".into(),
|
||||
endian: Endian::Big,
|
||||
|
|
|
@ -5,7 +5,7 @@ pub fn target() -> Target {
|
|||
llvm_target: "mipsisa64r6el-unknown-linux-gnuabi64".into(),
|
||||
pointer_width: 64,
|
||||
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128".into(),
|
||||
arch: "mips64".into(),
|
||||
arch: "mips64r6".into(),
|
||||
options: TargetOptions {
|
||||
abi: "abi64".into(),
|
||||
// NOTE(mips64r6) matches C toolchain
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue