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
1431602f
Commit
1431602f
authored
Jan 12, 2021
by
Evan Nemerson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
neon/abs: vabsd_s64 wasn't added to GCC until 9.1.0
Relevant GCC commit: 66da5b53107962a1c115a9686f2220de27f276f7
parent
b799d1bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
arm/neon/abs.h
arm/neon/abs.h
+1
-1
simde-common.h
simde-common.h
+3
-0
No files found.
arm/neon/abs.h
View file @
1431602f
...
@@ -36,7 +36,7 @@ SIMDE_BEGIN_DECLS_
...
@@ -36,7 +36,7 @@ SIMDE_BEGIN_DECLS_
SIMDE_FUNCTION_ATTRIBUTES
SIMDE_FUNCTION_ATTRIBUTES
int64_t
int64_t
simde_vabsd_s64
(
int64_t
a
)
{
simde_vabsd_s64
(
int64_t
a
)
{
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
&& (!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,1,0))
return
vabsd_s64
(
a
);
return
vabsd_s64
(
a
);
#else
#else
return
a
<
0
?
-
a
:
a
;
return
a
<
0
?
-
a
:
a
;
...
...
simde-common.h
View file @
1431602f
...
@@ -811,6 +811,9 @@ HEDLEY_DIAGNOSTIC_POP
...
@@ -811,6 +811,9 @@ HEDLEY_DIAGNOSTIC_POP
# if !HEDLEY_GCC_VERSION_CHECK(9,4,0) && defined(SIMDE_ARCH_AARCH64)
# if !HEDLEY_GCC_VERSION_CHECK(9,4,0) && defined(SIMDE_ARCH_AARCH64)
# define SIMDE_BUG_GCC_94488
# define SIMDE_BUG_GCC_94488
# endif
# endif
# if !HEDLEY_GCC_VERSION_CHECK(9,1,0) && defined(SIMDE_ARCH_AARCH64)
# define SIMDE_BUG_GCC_REV_264019
# endif
# if defined(SIMDE_ARCH_ARM)
# if defined(SIMDE_ARCH_ARM)
# define SIMDE_BUG_GCC_95399
# define SIMDE_BUG_GCC_95399
# define SIMDE_BUG_GCC_95471
# define SIMDE_BUG_GCC_95471
...
...
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