-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #637 from Ka-zam/fix_warnings
fix compiler warnings
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
* | ||
|
@@ -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); | ||
|