* expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.

From-SVN: r49340
This commit is contained in:
Zack Weinberg 2002-01-30 17:29:13 +00:00 committed by Zack Weinberg
parent 6084253c7e
commit 20d32cc2b5
2 changed files with 8 additions and 0 deletions

View File

@ -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.

View File

@ -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);