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
9f9ed50a
Commit
9f9ed50a
authored
Apr 28, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(stack_result): Fix bug in last change.
From-SVN: r9530
parent
4f2bae39
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/reg-stack.c
+4
-4
No files found.
gcc/reg-stack.c
View file @
9f9ed50a
...
...
@@ -1398,7 +1398,7 @@ uses_reg_or_mem (x)
}
/* If current function returns its result in an fp stack register,
return the
register number. Otherwise return -1
. */
return the
REG. Otherwise, return 0
. */
static
rtx
stack_result
(
decl
)
...
...
@@ -1407,8 +1407,8 @@ stack_result (decl)
rtx
result
=
DECL_RTL
(
DECL_RESULT
(
decl
));
if
(
result
!=
0
&&
!
(
GET_CODE
(
result
)
==
REG
&&
REGNO
(
result
)
<
FIRST_PSEUDO_REGISTER
))
&&
!
(
GET_CODE
(
result
)
==
REG
&&
REGNO
(
result
)
<
FIRST_PSEUDO_REGISTER
))
{
#ifdef FUNCTION_OUTGOING_VALUE
result
...
...
@@ -1418,7 +1418,7 @@ stack_result (decl)
#endif
}
return
STACK_REG_P
(
result
)
?
result
:
(
rtx
)
0
;
return
result
!=
0
&&
STACK_REG_P
(
result
)
?
result
:
0
;
}
/* Determine the which registers are live at the start of each basic
...
...
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