Skip to content

Commit c9f16bb

Browse files
authored
Auto merge of #37624 - xen0n:remove-bogus-mipsel-arches, r=alexcrichton
Remove mention of mipsel target_arch This is the only remaining instance in rustc. All others were in the libc repo, removed with rust-lang/libc#445. Actually there's more to clean in `libsyntax/abi.rs`, but let's save that for another commit...
2 parents 045a727 + a28c01b commit c9f16bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libpanic_unwind/gcc.rs

+1-1
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)