Skip to content

Commit a28c01b

Browse files
committed
Remove mention of mipsel target_arch
The `mipsel` `target_arch` was introduced with the initial MIPSel support (rust-lang/rust@82ec1ae), but was subsequently removed with implementation of the Flexible Target Specification (Rust RFC 0131, rust-lang/rust@3a8f4ec). This is the only remaining instance in rustc. All others are in the libc repo, and are fixed in rust-lang/libc@b367659.
1 parent 8e2b57d commit a28c01b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libpanic_unwind/gcc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const UNWIND_DATA_REG: (i32, i32) = (0, 1); // RAX, RDX
124124
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
125125
const UNWIND_DATA_REG: (i32, i32) = (0, 1); // R0, R1 / X0, X1
126126

127-
#[cfg(any(target_arch = "mips", target_arch = "mipsel", target_arch = "mips64"))]
127+
#[cfg(any(target_arch = "mips", target_arch = "mips64"))]
128128
const UNWIND_DATA_REG: (i32, i32) = (4, 5); // A0, A1
129129

130130
#[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]

0 commit comments

Comments
 (0)