Skip to content

Commit

Permalink
Add a wishlist FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmcm committed Oct 6, 2023
1 parent 910674f commit e300847
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/codegen/simd/simd-wide-sum.rs
Expand Up @@ -52,6 +52,8 @@ pub fn wider_reduce_iter(x: Simd<u8, N>) -> u16 {
#[no_mangle]
// CHECK-LABEL: @wider_reduce_into_iter
pub fn wider_reduce_into_iter(x: Simd<u8, N>) -> u16 {
// FIXME: It would be nice if this was exactly the same as the above tests,
// but at the time of writing this comment, that didn't happen on LLVM main.
// CHECK: call i16 @llvm.vector.reduce.add
x.to_array().into_iter().map(u16::from).sum()
}

0 comments on commit e300847

Please sign in to comment.