Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
codegen: Fix missing parameter
c
and types in mul_add
for fma
Running into a bunch of: error[E0425]: cannot find value `c` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/glam-0.21.0/src/f32/sse2/vec3a.rs:626:35 | 626 | _mm_fmadd_ps(self, b, c) | ^ help: a local variable with a similar name exists: `a` And: error[E0308]: mismatched types --> .cargo/registry/src/github.com-1ecc6299db9ec823/glam-0.21.0/src/f32/sse2/vec3a.rs:626:26 | 626 | _mm_fmadd_ps(self, b, c) | ^^^^ expected struct `std::arch::x86_64::__m128`, found struct `f32::sse2::vec3a::Vec3A` On the new 0.21 release when building for a CPU with FMA, introduced by the new codegen in bitshifter#294. These are trivially fixable by updating the template.
- Loading branch information