Skip to content

Commit

Permalink
Merge pull request #637 from Ka-zam/fix_warnings
Browse files Browse the repository at this point in the history
fix compiler warnings
  • Loading branch information
jdemel authored Oct 22, 2023
2 parents fdc87b1 + 3c646d9 commit b131c96
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kernels/volk/volk_16i_max_star_horizontal_16i.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* -*- c++ -*- */
/*
* Copyright 2012, 2014 Free Software Foundation, Inc.
* Copyright 2023 Magnus Lundmark <[email protected]>
*
* This file is part of VOLK
*
Expand Down Expand Up @@ -75,8 +76,8 @@ static inline void volk_16i_max_star_horizontal_16i_a_ssse3(int16_t* target,
0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02
};

__m128i xmm0, xmm1, xmm2, xmm3, xmm4;
__m128i xmm5, xmm6, xmm7, xmm8;
__m128i xmm0 = {}, xmm1 = {}, xmm2 = {}, xmm3 = {}, xmm4 = {};
__m128i xmm5 = {}, xmm6 = {}, xmm7 = {}, xmm8 = {};

xmm4 = _mm_load_si128((__m128i*)shufmask0);
xmm5 = _mm_load_si128((__m128i*)shufmask1);
Expand Down

0 comments on commit b131c96

Please sign in to comment.