summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-11-06 20:23:50 -0800
committerGitHub <noreply@github.com>2016-11-06 20:23:50 -0800
commitb3676593f6930c32d947c59e210789bbfcb30960 (patch)
tree88f597dfea4e3318a36d621dcac537352e7ab385
parentd081938bf2b2bb05951fd30dcdf4f8fdc4f1ba17 (diff)
parent0caba71691399edd78f21521322273d8c06d8d81 (diff)
downloadrust-libc-b3676593f6930c32d947c59e210789bbfcb30960.tar.gz
Merge pull request #445 from xen0n/remove-bogus-mipsel-arches
Remove mipsel target_arches
-rw-r--r--src/unix/notbsd/linux/mod.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/unix/notbsd/linux/mod.rs b/src/unix/notbsd/linux/mod.rs
index c4189e302a..eff697aac3 100644
--- a/src/unix/notbsd/linux/mod.rs
+++ b/src/unix/notbsd/linux/mod.rs
@@ -66,21 +66,21 @@ s! {
}
pub struct pthread_mutex_t {
- #[cfg(any(target_arch = "mips", target_arch = "mipsel",
- target_arch = "arm", target_arch = "powerpc"))]
+ #[cfg(any(target_arch = "mips", target_arch = "arm",
+ target_arch = "powerpc"))]
__align: [::c_long; 0],
- #[cfg(not(any(target_arch = "mips", target_arch = "mipsel",
- target_arch = "arm", target_arch = "powerpc")))]
+ #[cfg(not(any(target_arch = "mips", target_arch = "arm",
+ target_arch = "powerpc")))]
__align: [::c_longlong; 0],
size: [u8; __SIZEOF_PTHREAD_MUTEX_T],
}
pub struct pthread_rwlock_t {
- #[cfg(any(target_arch = "mips", target_arch = "mipsel",
- target_arch = "arm", target_arch = "powerpc"))]
+ #[cfg(any(target_arch = "mips", target_arch = "arm",
+ target_arch = "powerpc"))]
__align: [::c_long; 0],
- #[cfg(not(any(target_arch = "mips", target_arch = "mipsel",
- target_arch = "arm", target_arch = "powerpc")))]
+ #[cfg(not(any(target_arch = "mips", target_arch = "arm",
+ target_arch = "powerpc")))]
__align: [::c_longlong; 0],
size: [u8; __SIZEOF_PTHREAD_RWLOCK_T],
}
@@ -736,7 +736,7 @@ cfg_if! {
target_os = "emscripten"))] {
mod musl;
pub use self::musl::*;
- } else if #[cfg(any(target_arch = "mips", target_arch = "mipsel"))] {
+ } else if #[cfg(any(target_arch = "mips"))] {
mod mips;
pub use self::mips::*;
} else if #[cfg(any(target_arch = "s390x"))] {