Commit 20d32cc2 by Zack Weinberg Committed by Zack Weinberg

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

From-SVN: r49340
parent 6084253c
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.
......
...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment