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
20d32cc2
Commit
20d32cc2
authored
Jan 30, 2002
by
Zack Weinberg
Committed by
Zack Weinberg
Jan 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.
From-SVN: r49340
parent
6084253c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/expmed.c
+4
-0
No files found.
gcc/ChangeLog
View file @
20d32cc2
2002-01-30 Zack Weinberg <zack@codesourcery.com>
* expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.
2002-01-28 Jason Merrill <jason@redhat.com>
2002-01-28 Jason Merrill <jason@redhat.com>
* dwarf2out.c (dwarf_cfi_name): Add other DWARF 3 codes.
* dwarf2out.c (dwarf_cfi_name): Add other DWARF 3 codes.
...
...
gcc/expmed.c
View file @
20d32cc2
...
@@ -4198,6 +4198,10 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
...
@@ -4198,6 +4198,10 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
rtx
last
=
get_last_insn
();
rtx
last
=
get_last_insn
();
rtx
pattern
,
comparison
;
rtx
pattern
,
comparison
;
/* ??? Ok to do this and then fail? */
op0
=
protect_from_queue
(
op0
,
0
);
op1
=
protect_from_queue
(
op1
,
0
);
if
(
unsignedp
)
if
(
unsignedp
)
code
=
unsigned_condition
(
code
);
code
=
unsigned_condition
(
code
);
...
...
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