Skip to content

Commit 246e749

Browse files
committed
Add mips architectures to conditional-compile test
1 parent 5740f94 commit 246e749

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/run-pass/conditional-compile-arch.rs

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ pub fn main() { }
2222
#[cfg(target_arch = "aarch64")]
2323
pub fn main() { }
2424

25+
#[cfg(target_arch = "mips")]
26+
pub fn main() { }
27+
28+
#[cfg(target_arch = "mips64")]
29+
pub fn main() { }
30+
2531
#[cfg(target_arch = "powerpc64")]
2632
pub fn main() { }
2733

0 commit comments

Comments
 (0)