diff options
| author | chenx97 <chenx97@aosc.io> | 2023-06-28 13:24:01 +0800 |
|---|---|---|
| committer | chenx97 <chenx97@aosc.io> | 2023-07-18 18:58:18 +0800 |
| commit | a132b3ec03f3ddab35fdc2d0c3bfbda951956db5 (patch) | |
| tree | 9a83465cbb24ee8bf087d593004c2072677ee493 /compiler/rustc_target/src/asm/mod.rs | |
| parent | c6e03cd9516cccb95257e224af49d704cf493e04 (diff) | |
| download | rust-a132b3ec03f3ddab35fdc2d0c3bfbda951956db5.tar.gz rust-a132b3ec03f3ddab35fdc2d0c3bfbda951956db5.zip | |
merge patterns
Diffstat (limited to 'compiler/rustc_target/src/asm/mod.rs')
| -rw-r--r-- | compiler/rustc_target/src/asm/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_target/src/asm/mod.rs b/compiler/rustc_target/src/asm/mod.rs index d543899d58e..8c3fef4b1ad 100644 --- a/compiler/rustc_target/src/asm/mod.rs +++ b/compiler/rustc_target/src/asm/mod.rs @@ -239,8 +239,7 @@ impl FromStr for InlineAsmArch { "hexagon" => Ok(Self::Hexagon), "loongarch64" => Ok(Self::LoongArch64), "mips" => Ok(Self::Mips), - "mips64" => Ok(Self::Mips64), - "mips64r6" => Ok(Self::Mips64), + "mips64" | "mips64r6" => Ok(Self::Mips64), "s390x" => Ok(Self::S390x), "spirv" => Ok(Self::SpirV), "wasm32" => Ok(Self::Wasm32), |
