about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorJames Cowgill <jcowgill@debian.org>2018-01-25 13:25:37 +0000
committerJames Cowgill <jcowgill@debian.org>2018-03-08 15:27:23 +0000
commit1376bf8b01f8d121b04902ac3ed6a248c5137720 (patch)
treeb8256e5df50c6713df3add108ec4178b524e4ba1 /src/tools
parent2bc3f5b05352d1a046dc159db52505a25f1f2540 (diff)
tools/compiletest: add mips64 to ARCH_LIST
Don't bother distinguishing between big end little endian targets.
There are currently no tests which need this.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/compiletest/src/util.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/compiletest/src/util.rs b/src/tools/compiletest/src/util.rs
index cf63cb2e5d9..0e3fa25b13c 100644
--- a/src/tools/compiletest/src/util.rs
+++ b/src/tools/compiletest/src/util.rs
@@ -40,6 +40,7 @@ const ARCH_TABLE: &'static [(&'static str, &'static str)] = &[
     ("i386", "x86"),
     ("i586", "x86"),
     ("i686", "x86"),
+    ("mips64", "mips64"),
     ("mips", "mips"),
     ("msp430", "msp430"),
     ("powerpc", "powerpc"),