Skip to content

Commit

Permalink
Merge pull request #3599 from alyssarosenzweig/jit/fix-faddv
Browse files Browse the repository at this point in the history
JIT: fix neon vec4 faddv
  • Loading branch information
Sonicadvance1 authored Apr 25, 2024
2 parents 81a4206 + 4a4fa64 commit fe70ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FEXCore/Source/Interface/Core/JIT/Arm64/VectorOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ DEF_OP(VFAddV) {
// ASIMD doesn't support faddv, need to use multiple faddp to match behaviour.
if (ElementSize == 4) {
faddp(SubRegSize.Vector, Dst.Q(), Vector.Q(), Vector.Q());
faddp(SubRegSize.Scalar, Dst, Vector);
faddp(SubRegSize.Scalar, Dst, Dst);
} else {
faddp(SubRegSize.Scalar, Dst, Vector);
}
Expand Down

0 comments on commit fe70ec7

Please sign in to comment.