mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed typo in juce_SIMDRegister.h
This commit is contained in:
parent
224d0a9325
commit
365507d7fd
1 changed files with 1 additions and 1 deletions
|
|
@ -296,7 +296,7 @@ struct SIMDRegister
|
|||
static inline SIMDRegister JUCE_VECTOR_CALLTYPE max (SIMDRegister a, SIMDRegister b) noexcept { return { NativeOps::max (a.value, b.value) }; }
|
||||
|
||||
//==============================================================================
|
||||
/** Multiplies a and b and adds the result to c. */
|
||||
/** Multiplies b and c and adds the result to a. */
|
||||
static inline SIMDRegister JUCE_VECTOR_CALLTYPE multiplyAdd (SIMDRegister a, const SIMDRegister b, SIMDRegister c) noexcept
|
||||
{
|
||||
return { CmplxOps::muladd (a.value, b.value, c.value) };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue