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
5460015d
Commit
5460015d
authored
Apr 12, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_stack_save): At end, call validize_mem when inside sequence.
From-SVN: r4104
parent
b7647895
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
gcc/explow.c
+8
-3
No files found.
gcc/explow.c
View file @
5460015d
...
...
@@ -748,21 +748,26 @@ emit_stack_save (save_level, psave, after)
abort
();
}
if
(
sa
!=
0
)
sa
=
validize_mem
(
sa
);
if
(
after
)
{
rtx
seq
;
start_sequence
();
/* We must validize inside the sequence, to ensure that any instructions
created by the validize call also get moved to the right place. */
if
(
sa
!=
0
)
sa
=
validize_mem
(
sa
);
emit_insn
(
fcn
(
sa
,
stack_pointer_rtx
));
seq
=
gen_sequence
();
end_sequence
();
emit_insn_after
(
seq
,
after
);
}
else
{
if
(
sa
!=
0
)
sa
=
validize_mem
(
sa
);
emit_insn
(
fcn
(
sa
,
stack_pointer_rtx
));
}
}
/* Restore the stack pointer for the purpose in SAVE_LEVEL. SA is the save
...
...
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