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
2cc7d4fe
Commit
2cc7d4fe
authored
Feb 11, 2018
by
Steven Munroe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re PR target/84266 (mmintrin.h intrinsic headers for PowerPC code fails on power9)
Fix PR 84266 From-SVN: r257571
parent
6a793a8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+8
-0
gcc/config/rs6000/mmintrin.h
+2
-2
No files found.
gcc/ChangeLog
View file @
2cc7d4fe
2018-02-11 Steven Munroe <munroesj@gcc.gnu.org>
PR target/84266
* config/rs6000/mmintrin.h (_mm_cmpeq_pi32 [_ARCH_PWR9]):
Cast vec_cmpeq result to correct type.
* config/rs6000/mmintrin.h (_mm_cmpgt_pi32 [_ARCH_PWR9]):
Cast vec_cmpgt result to correct type.
2018-02-11 Alexandre Oliva <aoliva@redhat.com>
* final.c (final_scan_insn_1): Renamed from...
...
...
gcc/config/rs6000/mmintrin.h
View file @
2cc7d4fe
...
...
@@ -854,7 +854,7 @@ _mm_cmpeq_pi32 (__m64 __m1, __m64 __m2)
a
=
(
__vector
signed
int
)
vec_splats
(
__m1
);
b
=
(
__vector
signed
int
)
vec_splats
(
__m2
);
c
=
(
__vector
signed
shor
t
)
vec_cmpeq
(
a
,
b
);
c
=
(
__vector
signed
in
t
)
vec_cmpeq
(
a
,
b
);
return
(
__builtin_unpack_vector_int128
((
__vector
__int128_t
)
c
,
0
));
#else
__m64_union
m1
,
m2
,
res
;
...
...
@@ -883,7 +883,7 @@ _mm_cmpgt_pi32 (__m64 __m1, __m64 __m2)
a
=
(
__vector
signed
int
)
vec_splats
(
__m1
);
b
=
(
__vector
signed
int
)
vec_splats
(
__m2
);
c
=
(
__vector
signed
shor
t
)
vec_cmpgt
(
a
,
b
);
c
=
(
__vector
signed
in
t
)
vec_cmpgt
(
a
,
b
);
return
(
__builtin_unpack_vector_int128
((
__vector
__int128_t
)
c
,
0
));
#else
__m64_union
m1
,
m2
,
res
;
...
...
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