From bc184237cc5714fe25bf4ecc9b88d0dfe2be2407 Mon Sep 17 00:00:00 2001 From: edef Date: Sat, 16 Jul 2016 16:18:58 -0400 Subject: [PATCH] rename simd -> context_simd This fixes a spurious rustc warning. --- tests/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/context.rs b/tests/context.rs index b922448..a94ac7d 100644 --- a/tests/context.rs +++ b/tests/context.rs @@ -34,7 +34,7 @@ fn context() { } #[test] -fn simd() { +fn context_simd() { unsafe extern "C" fn permuter(arg: usize) -> ! { // This will crash if the stack is not aligned properly. let x = simd::i32x4::splat(arg as i32);