about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-11-07 04:14:00 -0800
committerGitHub <noreply@github.com>2016-11-07 04:14:00 -0800
commitc9f16bbc419d1a945823d91419bbb1fc75bfbc79 (patch)
tree6a355bb2aea4f932458e1009d2a2c79d77ead882
parent045a727b8362103052ae3c5f51ad24f069bbd43f (diff)
parenta28c01bdf94951b92172a2869d301f82f1344d12 (diff)
downloadrust-c9f16bbc419d1a945823d91419bbb1fc75bfbc79.tar.gz
rust-c9f16bbc419d1a945823d91419bbb1fc75bfbc79.zip
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...
-rw-r--r--src/libpanic_unwind/gcc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libpanic_unwind/gcc.rs b/src/libpanic_unwind/gcc.rs
index f0f19be3366..73264fab69c 100644
--- a/src/libpanic_unwind/gcc.rs
+++ b/src/libpanic_unwind/gcc.rs
@@ -124,7 +124,7 @@ const UNWIND_DATA_REG: (i32, i32) = (0, 1); // RAX, RDX
 #[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
 const UNWIND_DATA_REG: (i32, i32) = (0, 1); // R0, R1 / X0, X1
 
-#[cfg(any(target_arch = "mips", target_arch = "mipsel", target_arch = "mips64"))]
+#[cfg(any(target_arch = "mips", target_arch = "mips64"))]
 const UNWIND_DATA_REG: (i32, i32) = (4, 5); // A0, A1
 
 #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]