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
1a09d3bc
Commit
1a09d3bc
authored
Sep 18, 2024
by
Gabriel Hege
Committed by
Michael R. Crusoe
Sep 18, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: move definition of 'value' to correct branch in _mm_loadl_epi64
parent
aac58332
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
x86/sse2.h
x86/sse2.h
+2
-3
No files found.
x86/sse2.h
View file @
1a09d3bc
...
...
@@ -3548,12 +3548,11 @@ simde_mm_loadl_epi64 (simde__m128i const* mem_addr) {
#else
simde__m128i_private
r_
;
int64_t
value
;
simde_memcpy
(
&
value
,
mem_addr
,
sizeof
(
value
));
#if defined(SIMDE_ARM_NEON_A32V7_NATIVE)
r_
.
neon_i64
=
vcombine_s64
(
vld1_s64
(
HEDLEY_REINTERPRET_CAST
(
int64_t
const
*
,
mem_addr
)),
vdup_n_s64
(
0
));
#else
int64_t
value
;
simde_memcpy
(
&
value
,
mem_addr
,
sizeof
(
value
));
r_
.
i64
[
0
]
=
value
;
r_
.
i64
[
1
]
=
0
;
#endif
...
...
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