about summary refs log tree commit diff
path: root/src/liballoc_system
diff options
context:
space:
mode:
authorJonathan A. Kollasch <jakllsch@kollasch.net>2016-12-06 15:55:11 -0600
committerJorge Aparicio <japaricious@gmail.com>2016-12-29 21:30:01 -0500
commit5672c9b606826ba83a1b96cdad198d4add6dbd3d (patch)
tree81c247912dde1a33cfd377ee59aa0706402ed938 /src/liballoc_system
parent011ebda40cce5c60560b7ee6951b16cdcb6897a0 (diff)
downloadrust-5672c9b606826ba83a1b96cdad198d4add6dbd3d.tar.gz
rust-5672c9b606826ba83a1b96cdad198d4add6dbd3d.zip
liballoc_*: add MIN_ALIGN for sparc64
Diffstat (limited to 'src/liballoc_system')
-rw-r--r--src/liballoc_system/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liballoc_system/lib.rs b/src/liballoc_system/lib.rs
index 4daa6cbb846..5f0b637656b 100644
--- a/src/liballoc_system/lib.rs
+++ b/src/liballoc_system/lib.rs
@@ -35,7 +35,8 @@ const MIN_ALIGN: usize = 8;
 #[cfg(all(any(target_arch = "x86_64",
               target_arch = "aarch64",
               target_arch = "mips64",
-              target_arch = "s390x")))]
+              target_arch = "s390x",
+              target_arch = "sparc64")))]
 const MIN_ALIGN: usize = 16;
 
 #[no_mangle]