]> git.lizzy.rs Git - rust.git/commitdiff
borrowck-asm: enable on mips
authorJames Cowgill <jcowgill@debian.org>
Tue, 23 Jan 2018 16:49:08 +0000 (16:49 +0000)
committerJames Cowgill <jcowgill@debian.org>
Thu, 8 Mar 2018 11:40:00 +0000 (11:40 +0000)
src/test/compile-fail/borrowck/borrowck-asm.rs

index 6bccc8386809323ad28749c577532af7dce64221..9ad3a8f9fc8671e072a93e06d9fb77ccafae32f9 100644 (file)
@@ -21,7 +21,9 @@
 #[cfg(any(target_arch = "x86",
             target_arch = "x86_64",
             target_arch = "arm",
-            target_arch = "aarch64"))]
+            target_arch = "aarch64",
+            target_arch = "mips",
+            target_arch = "mips64"))]
 mod test_cases {
     fn is_move() {
         let y: &mut isize;