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
3bdf5848
Commit
3bdf5848
authored
Jan 01, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Jan 01, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid losing pending stack adjusts.
From-SVN: r31156
parent
2d0541b9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+5
-0
gcc/expmed.c
+3
-1
No files found.
gcc/ChangeLog
View file @
3bdf5848
2000
-
01
-
01
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
expmed
.
c
(
emit_store_flag
)
:
Prevent
losing
a
pending
stack
adjust
the
same
way
we
prevent
losing
queued
increments
.
Fri
Dec
31
19
:
10
:
31
1999
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
Fri
Dec
31
19
:
10
:
31
1999
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
function
.
c
(
update_temp_slot_address
)
:
Handle
case
where
sum
of
*
function
.
c
(
update_temp_slot_address
)
:
Handle
case
where
sum
of
...
...
gcc/expmed.c
View file @
3bdf5848
...
@@ -4229,9 +4229,11 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
...
@@ -4229,9 +4229,11 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
comparison and then the scc insn.
comparison and then the scc insn.
compare_from_rtx may call emit_queue, which would be deleted below
compare_from_rtx may call emit_queue, which would be deleted below
if the scc insn fails. So call it ourselves before setting LAST. */
if the scc insn fails. So call it ourselves before setting LAST.
Likewise for do_pending_stack_adjust. */
emit_queue
();
emit_queue
();
do_pending_stack_adjust
();
last
=
get_last_insn
();
last
=
get_last_insn
();
comparison
comparison
...
...
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