Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
simde
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
simde
Commits
d458d8fd
Commit
d458d8fd
authored
Feb 01, 2025
by
Michael R. Crusoe
Committed by
Michael R. Crusoe
Feb 03, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86 sse2,sse3, avx: silence some false-positive warnings about unitialized structs
parent
4184e0d4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
x86/sse2.h
x86/sse2.h
+9
-0
x86/sse3.h
x86/sse3.h
+9
-0
No files found.
x86/sse2.h
View file @
d458d8fd
...
...
@@ -3793,6 +3793,11 @@ simde_mm_load_si128 (simde__m128i const* mem_addr) {
#define _mm_load_si128(mem_addr) simde_mm_load_si128(mem_addr)
#endif
#if defined(SIMDE_DIAGNOSTIC_DISABLE_UNINITIALIZED_)
HEDLEY_DIAGNOSTIC_PUSH
SIMDE_DIAGNOSTIC_DISABLE_UNINITIALIZED_
#endif
SIMDE_FUNCTION_ATTRIBUTES
simde__m128d
simde_mm_loadh_pd
(
simde__m128d
a
,
simde_float64
const
*
mem_addr
)
{
...
...
@@ -3824,6 +3829,10 @@ simde_mm_loadh_pd (simde__m128d a, simde_float64 const* mem_addr) {
#define _mm_loadh_pd(a, mem_addr) simde_mm_loadh_pd(a, mem_addr)
#endif
#if defined(SIMDE_DIAGNOSTIC_DISABLE_UNINITIALIZED_)
HEDLEY_DIAGNOSTIC_POP
#endif
SIMDE_FUNCTION_ATTRIBUTES
simde__m128i
simde_mm_loadl_epi64
(
simde__m128i
const
*
mem_addr
)
{
...
...
x86/sse3.h
View file @
d458d8fd
...
...
@@ -479,6 +479,11 @@ simde_mm_movedup_pd (simde__m128d a) {
# define _mm_movedup_pd(a) simde_mm_movedup_pd(a)
#endif
#if defined(SIMDE_DIAGNOSTIC_DISABLE_UNINITIALIZED_)
HEDLEY_DIAGNOSTIC_PUSH
SIMDE_DIAGNOSTIC_DISABLE_UNINITIALIZED_
#endif
SIMDE_FUNCTION_ATTRIBUTES
simde__m128
simde_mm_movehdup_ps
(
simde__m128
a
)
{
...
...
@@ -543,6 +548,10 @@ simde_mm_moveldup_ps (simde__m128 a) {
# define _mm_moveldup_ps(a) simde_mm_moveldup_ps(a)
#endif
#if defined(SIMDE_DIAGNOSTIC_DISABLE_UNINITIALIZED_)
HEDLEY_DIAGNOSTIC_POP
#endif
SIMDE_END_DECLS_
HEDLEY_DIAGNOSTIC_POP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment