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
c8aa02cc
Commit
c8aa02cc
authored
Jul 09, 2010
by
Michael Meissner
Committed by
Michael Meissner
Jul 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re PR target/44877 (C++ compiler can no longer compile dealII for VSX/Altivec vectorization)
PR 44877 From-SVN: r162002
parent
4bade865
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+7
-0
gcc/config/rs6000/rs6000.c
+1
-1
No files found.
gcc/ChangeLog
View file @
c8aa02cc
2010-07-08 Michael Meissner <meissner@linux.vnet.ibm.com>
PR target/44877
* config/rs6000/rs6000.c (rs6000_expand_builtin): Use
POINTER_TYPE_P instead of checking only for POINTER_TYPE for the
builtin mask for load/store builtins.
2010-07-09 Uros Bizjak <ubizjak@gmail.com>
* configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Also check
...
...
gcc/config/rs6000/rs6000.c
View file @
c8aa02cc
...
...
@@ -11523,7 +11523,7 @@ rs6000_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED,
gcc_assert
(
TARGET_ALTIVEC
);
arg
=
CALL_EXPR_ARG
(
exp
,
0
);
gcc_assert
(
TREE_CODE
(
TREE_TYPE
(
arg
))
==
POINTER_TYPE
);
gcc_assert
(
POINTER_TYPE_P
(
TREE_TYPE
(
arg
))
);
op
=
expand_expr
(
arg
,
NULL_RTX
,
Pmode
,
EXPAND_NORMAL
);
addr
=
memory_address
(
mode
,
op
);
if
(
fcode
==
ALTIVEC_BUILTIN_MASK_FOR_STORE
)
...
...
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