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
80a3ad45
Commit
80a3ad45
authored
Oct 31, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_call): Disable special handling for const calls
that return a PARALLEL rtx. From-SVN: r13084
parent
c647c985
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/calls.c
+3
-2
No files found.
gcc/calls.c
View file @
80a3ad45
...
...
@@ -1912,8 +1912,9 @@ expand_call (exp, target, ignore)
/* If call is cse'able, make appropriate pair of reg-notes around it.
Test valreg so we don't crash; may safely ignore `const'
if return type is void. */
if
(
is_const
&&
valreg
!=
0
)
if return type is void. Disable for PARALLEL return values, because
we have no way to move such values into a pseudo register. */
if
(
is_const
&&
valreg
!=
0
&&
GET_CODE
(
valreg
)
!=
PARALLEL
)
{
rtx
note
=
0
;
rtx
temp
=
gen_reg_rtx
(
GET_MODE
(
valreg
));
...
...
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