Skip to content

Commit

Permalink
Merge pull request #244 from geckor14/master
Browse files Browse the repository at this point in the history
Remove unused variable
  • Loading branch information
recp authored Mar 18, 2022
2 parents 6fa1cef + 851a58c commit 7e5d1f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/cglm/simd/neon/affine.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,12 @@ CGLM_INLINE
void
glm_inv_tr_neon(mat4 mat) {
float32x4x4_t vmat;
glmm_128 r0, r1, r2, r3, x0;
glmm_128 r0, r1, r2, x0;

vmat = vld4q_f32(mat[0]);
r0 = vmat.val[0];
r1 = vmat.val[1];
r2 = vmat.val[2];
r3 = vmat.val[3];

x0 = glmm_fmadd(r0, glmm_splat_w(r0),
glmm_fmadd(r1, glmm_splat_w(r1),
Expand Down

0 comments on commit 7e5d1f4

Please sign in to comment.