Skip to content

Commit

Permalink
Remove a left-over assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
kcat committed Nov 19, 2024
1 parent 3a66f6a commit 62b33d3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion common/pffft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ force_inline void uninterleave2(v4sf in1, v4sf in2, v4sf &out1, v4sf &out2) noex
{
out1 = vec_perm(in1, in2, (vector unsigned char){0,1,2,3,8,9,10,11,16,17,18,19,24,25,26,27});
out2 = vec_perm(in1, in2, (vector unsigned char){4,5,6,7,12,13,14,15,20,21,22,23,28,29,30,31});
out1 = tmp;
}

force_inline void vtranspose4(v4sf &x0, v4sf &x1, v4sf &x2, v4sf &x3) noexcept
Expand Down

0 comments on commit 62b33d3

Please sign in to comment.