about summary refs log tree commit diff
diff options
context:
space:
mode:
authorchenx97 <chenx97@aosc.io>2023-06-28 13:35:39 +0800
committerchenx97 <chenx97@aosc.io>2023-07-18 18:58:18 +0800
commitf2dded27f828ba02f76b1b714b3ab2361d4e003e (patch)
treea4a9d340810a37865f7562c159419cec7b39ff84
parent5277ea10b53373912582a3a3a5eaab94ff46ed5f (diff)
downloadrust-f2dded27f828ba02f76b1b714b3ab2361d4e003e.tar.gz
rust-f2dded27f828ba02f76b1b714b3ab2361d4e003e.zip
support for mips32r6 as a target_arch value
-rw-r--r--example/alloc_system.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/example/alloc_system.rs b/example/alloc_system.rs
index c13980d2c06..e756b347e89 100644
--- a/example/alloc_system.rs
+++ b/example/alloc_system.rs
@@ -10,6 +10,7 @@
 #[cfg(any(target_arch = "x86",
               target_arch = "arm",
               target_arch = "mips",
+              target_arch = "mips32r6",
               target_arch = "powerpc",
               target_arch = "powerpc64"))]
 const MIN_ALIGN: usize = 8;