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
665792eb
Commit
665792eb
authored
Feb 09, 2000
by
Jan Hubicka
Committed by
Jan Hubicka
Feb 09, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (reload) Align stack frame to cfun->stack_alignment_needed,
not to BIGGEST_ALIGNMENT. From-SVN: r31860
parent
1f7d1a52
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+5
-0
gcc/reload1.c
+3
-2
No files found.
gcc/ChangeLog
View file @
665792eb
Wed
Feb
9
14
:
18
:
08
MET
2000
Jan
Hubicka
<
jh
@suse
.
cz
>
*
reload1
.
c
(
reload
)
Align
stack
frame
to
cfun
->
stack_alignment_needed
,
not
to
BIGGEST_ALIGNMENT
.
2000
-
02
-
08
Geoff
Keating
<
geoffk
@cygnus
.
com
>
*
dwarf2
.
h
(
DW_CFA_GNU_negative_offset_extended
)
:
New
constant
.
...
...
gcc/reload1.c
View file @
665792eb
...
...
@@ -841,11 +841,12 @@ reload (first, global, dumpfile)
HOST_WIDE_INT
starting_frame_size
;
/* Round size of stack frame to
BIGGEST_ALIGNMENT
. This must be done
/* Round size of stack frame to
stack_alignment_needed
. This must be done
here because the stack size may be a part of the offset computation
for register elimination, and there might have been new stack slots
created in the last iteration of this loop. */
assign_stack_local
(
BLKmode
,
0
,
0
);
if
(
cfun
->
stack_alignment_needed
)
assign_stack_local
(
BLKmode
,
0
,
cfun
->
stack_alignment_needed
);
starting_frame_size
=
get_frame_size
();
...
...
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