Skip to content

Commit

Permalink
Clarify
Browse files Browse the repository at this point in the history
  • Loading branch information
fp64 committed Oct 2, 2023
1 parent 23e2d0f commit 49ac4c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/MIPS/MIPSVFPUUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -879,8 +879,9 @@ static float vfpu_dot_sse2(const float a[4], const float b[4])
float vfpu_dot(const float a[4], const float b[4]) {
#if defined(__SSE2__)
return vfpu_dot_sse2(a, b);
#endif
#else
return vfpu_dot_cpp(a, b);
#endif
}

//==============================================================================
Expand Down

0 comments on commit 49ac4c6

Please sign in to comment.