mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-05 11:30:07 +08:00
* expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.
From-SVN: r49340
This commit is contained in:
parent
6084253c7e
commit
20d32cc2b5
@ -1,3 +1,7 @@
|
||||
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>
|
||||
|
||||
* dwarf2out.c (dwarf_cfi_name): Add other DWARF 3 codes.
|
||||
|
@ -4198,6 +4198,10 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
|
||||
rtx last = get_last_insn ();
|
||||
rtx pattern, comparison;
|
||||
|
||||
/* ??? Ok to do this and then fail? */
|
||||
op0 = protect_from_queue (op0, 0);
|
||||
op1 = protect_from_queue (op1, 0);
|
||||
|
||||
if (unsignedp)
|
||||
code = unsigned_condition (code);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user