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
2b3aadfc
Commit
2b3aadfc
authored
Jun 20, 2002
by
Richard Henderson
Committed by
Richard Henderson
Jun 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* explow.c (probe_stack_range): Use gen_rtx_fmt_ee.
From-SVN: r54861
parent
5c44e275
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/explow.c
+6
-6
No files found.
gcc/ChangeLog
View file @
2b3aadfc
2002-06-20 Richard Henderson <rth@redhat.com>
* explow.c (probe_stack_range): Use gen_rtx_fmt_ee.
2002-06-20 Chris Demetriou <cgd@broadcom.com>
* config.gcc (mipsisa64-*-elf*, mipsisa64el-*-elf*): New targets.
...
...
gcc/explow.c
View file @
2b3aadfc
...
...
@@ -1473,9 +1473,9 @@ probe_stack_range (first, size)
if
(
stack_check_libfunc
!=
0
)
{
rtx
addr
=
memory_address
(
QImode
,
gen_rtx
(
STACK_GROW_OP
,
Pmode
,
stack_pointer_rtx
,
plus_constant
(
size
,
first
)));
gen_rtx
_fmt_ee
(
STACK_GROW_OP
,
Pmode
,
stack_pointer_rtx
,
plus_constant
(
size
,
first
)));
#ifdef POINTERS_EXTEND_UNSIGNED
if
(
GET_MODE
(
addr
)
!=
ptr_mode
)
...
...
@@ -1492,9 +1492,9 @@ probe_stack_range (first, size)
{
insn_operand_predicate_fn
pred
;
rtx
last_addr
=
force_operand
(
gen_rtx_
STACK_GROW_OP
(
Pmode
,
stack_pointer_rtx
,
plus_constant
(
size
,
first
)),
=
force_operand
(
gen_rtx_
fmt_ee
(
STACK_GROW_OP
,
Pmode
,
stack_pointer_rtx
,
plus_constant
(
size
,
first
)),
NULL_RTX
);
pred
=
insn_data
[(
int
)
CODE_FOR_check_stack
].
operand
[
0
].
predicate
;
...
...
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