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
6bd35f86
Commit
6bd35f86
authored
Oct 18, 1997
by
Doug Evans
Committed by
Doug Evans
Oct 18, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (use_group_regs): Don't call use_reg for MEMs.
From-SVN: r16046
parent
6981eacf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
gcc/ChangeLog
+4
-0
gcc/expr.c
+9
-8
No files found.
gcc/ChangeLog
View file @
6bd35f86
Sat Oct 18 12:47:31 1997 Doug Evans <dje@canuck.cygnus.com>
* expr.c (use_group_regs): Don't call use_reg for MEMs.
Sat Oct 18 00:43:59 1997 Jeffrey A Law (law@cygnus.com)
* i386/freebsd.h (ASM_COMMENT_START): Fix.
...
...
gcc/expr.c
View file @
6bd35f86
...
...
@@ -1922,15 +1922,16 @@ use_group_regs (call_fusage, regs)
{
int
i
;
/* Check for a NULL entry, used to indicate that the parameter goes
both on the stack and in registers. */
if
(
XEXP
(
XVECEXP
(
regs
,
0
,
0
),
0
))
i
=
0
;
else
i
=
1
;
for
(
i
=
0
;
i
<
XVECLEN
(
regs
,
0
);
i
++
)
{
rtx
reg
=
XEXP
(
XVECEXP
(
regs
,
0
,
i
),
0
);
for
(;
i
<
XVECLEN
(
regs
,
0
);
i
++
)
use_reg
(
call_fusage
,
XEXP
(
XVECEXP
(
regs
,
0
,
i
),
0
));
/* A NULL entry means the parameter goes both on the stack and in
registers. This can also be a MEM for targets that pass values
partially on the stack and partially in registers. */
if
(
reg
&&
GET_CODE
(
reg
)
==
REG
)
use_reg
(
call_fusage
,
reg
);
}
}
/* Generate several move instructions to clear LEN bytes of block TO.
...
...
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