about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorchenx97 <chenx97@aosc.io>2023-06-28 13:35:39 +0800
committerchenx97 <chenx97@aosc.io>2023-07-18 18:58:18 +0800
commitd3727148a0cb2ddf5f3d9c3af7f6caf5bc032e9d (patch)
treea30bd28dc7cc98b31be8c8cff63bbdea94eba09f /compiler/rustc_codegen_ssa/src/back
parenta132b3ec03f3ddab35fdc2d0c3bfbda951956db5 (diff)
downloadrust-d3727148a0cb2ddf5f3d9c3af7f6caf5bc032e9d.tar.gz
rust-d3727148a0cb2ddf5f3d9c3af7f6caf5bc032e9d.zip
support for mips32r6 as a target_arch value
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/metadata.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/metadata.rs b/compiler/rustc_codegen_ssa/src/back/metadata.rs
index 2bbd0dd6ca6..e8b8665e39d 100644
--- a/compiler/rustc_codegen_ssa/src/back/metadata.rs
+++ b/compiler/rustc_codegen_ssa/src/back/metadata.rs
@@ -193,7 +193,7 @@ pub(crate) fn create_object_file(sess: &Session) -> Option<write::Object<'static
         }
         "x86" => Architecture::I386,
         "s390x" => Architecture::S390x,
-        "mips" => Architecture::Mips,
+        "mips" | "mips32r6" => Architecture::Mips,
         "mips64" | "mips64r6" => Architecture::Mips64,
         "x86_64" => {
             if sess.target.pointer_width == 32 {