Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f76f4b23
Commit
f76f4b23
authored
8 years ago
by
Tamar Christina
Committed by
Tamar Christina
8 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm_neon.h (vget_lane_p64): New.
* config/arm/arm_neon.h (vget_lane_p64): New. From-SVN: r242914
parent
b7ce4fe2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+3
-0
gcc/config/arm/arm_neon.h
+9
-0
No files found.
gcc/ChangeLog
View file @
f76f4b23
2016-11-28 Tamar Christina <tamar.christina@arm.com>
* config/arm/arm_neon.h (vget_lane_p64): New.
2016-11-28 Iain Sandoe <iain@codesourcery.com>
PR target/71767
This diff is collapsed.
Click to expand it.
gcc/config/arm/arm_neon.h
View file @
f76f4b23
...
...
@@ -5411,6 +5411,15 @@ vget_lane_s64 (int64x1_t __a, const int __b)
return
(
int64_t
)
__builtin_neon_vget_lanedi
(
__a
,
__b
);
}
#pragma GCC push_options
#pragma GCC target ("fpu=crypto-neon-fp-armv8")
__extension__
static
__inline
poly64_t
__attribute__
((
__always_inline__
))
vget_lane_p64
(
poly64x1_t
__a
,
const
int
__b
)
{
return
(
poly64_t
)
__builtin_neon_vget_lanedi
((
int64x1_t
)
__a
,
__b
);
}
#pragma GCC pop_options
__extension__
static
__inline
uint64_t
__attribute__
((
__always_inline__
))
vget_lane_u64
(
uint64x1_t
__a
,
const
int
__b
)
{
...
...
This diff is collapsed.
Click to expand it.
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