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
0a76126b
Commit
0a76126b
authored
Mar 28, 1999
by
Jeffrey A Law
Committed by
Jeff Law
Mar 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (reload): Remove accidental code duplication.
From-SVN: r26042
parent
41bc80f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
14 deletions
+4
-14
gcc/ChangeLog
+4
-0
gcc/reload1.c
+0
-14
No files found.
gcc/ChangeLog
View file @
0a76126b
Sun
Mar
28
15
:
27
:
26
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
reload1
.
c
(
reload
)
:
Remove
accidental
code
duplication
.
Sun
Mar
28
12
:
22
:
12
1999
Robert
Lipe
(
robertlipe
@usa
.
net
)
*
i386
/
sysv5
.
h
:
New
file
to
describe
UnixWare7
/
SVR5
.
...
...
gcc/reload1.c
View file @
0a76126b
...
...
@@ -1181,20 +1181,6 @@ reload (first, global, dumpfile)
if
(
flag_stack_check
&&
!
STACK_CHECK_BUILTIN
)
{
HOST_WIDE_INT
size
=
get_frame_size
()
+
STACK_CHECK_FIXED_FRAME_SIZE
;
for
(
i
=
0
;
i
<
FIRST_PSEUDO_REGISTER
;
i
++
)
if
(
regs_ever_live
[
i
]
&&
!
fixed_regs
[
i
]
&&
call_used_regs
[
i
])
size
+=
UNITS_PER_WORD
;
if
(
size
>
STACK_CHECK_MAX_FRAME_SIZE
)
warning
(
"frame size too large for reliable stack checking"
);
}
/* If we are doing stack checking, give a warning if this function's
frame size is larger than we expect. */
if
(
flag_stack_check
&&
!
STACK_CHECK_BUILTIN
)
{
HOST_WIDE_INT
size
=
get_frame_size
()
+
STACK_CHECK_FIXED_FRAME_SIZE
;
static
int
verbose_warned
=
0
;
for
(
i
=
0
;
i
<
FIRST_PSEUDO_REGISTER
;
i
++
)
...
...
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