Remove special case for length-1 vectors

This commit is contained in:
Caleb Zulawski 2022-08-01 19:52:35 -04:00
parent c739af3908
commit d030301161

View file

@ -362,10 +362,6 @@ where
const INDEX: [Which; LANES] = deinterleave::<LANES>(true);
}
if LANES == 1 {
(self, other)
} else {
(Even::swizzle2(self, other), Odd::swizzle2(self, other))
}
(Even::swizzle2(self, other), Odd::swizzle2(self, other))
}
}