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
7bd2bb70
Commit
7bd2bb70
authored
Jan 02, 2025
by
Michael R. Crusoe
Committed by
GitHub
Jan 02, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm neon `_vext_p6`: reverse logic to avoid GCC14 i586 bug (#1251)
Co-authored-by:
Egor Ignatov
<
egori@altlinux.org
>
parent
b4bf72e1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
arm/neon/ext.h
arm/neon/ext.h
+1
-1
No files found.
arm/neon/ext.h
View file @
7bd2bb70
...
@@ -1075,7 +1075,7 @@ simde_vext_p64(simde_poly64x1_t a, simde_poly64x1_t b, const int n)
...
@@ -1075,7 +1075,7 @@ simde_vext_p64(simde_poly64x1_t a, simde_poly64x1_t b, const int n)
const
size_t
n_
=
HEDLEY_STATIC_CAST
(
size_t
,
n
);
const
size_t
n_
=
HEDLEY_STATIC_CAST
(
size_t
,
n
);
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
size_t
src
=
i
+
n_
;
size_t
src
=
i
+
n_
;
r_
.
values
[
i
]
=
(
src
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
])))
?
a_
.
values
[
src
]
:
b_
.
values
[
src
&
0
];
r_
.
values
[
i
]
=
(
src
>=
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
])))
?
b_
.
values
[
src
&
0
]
:
a_
.
values
[
src
];
}
}
return
simde_poly64x1_from_private
(
r_
);
return
simde_poly64x1_from_private
(
r_
);
#endif
#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