Commit 148e9d57 by Jeffrey A Law Committed by Jeff Law

reload1.c (reload_cse_regs_1): Do not call reload_cse_simplify_operands for an…

reload1.c (reload_cse_regs_1): Do not call reload_cse_simplify_operands for an insn with asm operands.

        * reload1.c (reload_cse_regs_1): Do not call
        reload_cse_simplify_operands for an insn with asm operands.

From-SVN: r24707
parent 62e7b719
Sat Jan 16 23:40:33 1999 Jeffrey A Law (law@cygnus.com)
* reload1.c (reload_cse_regs_1): Do not call
reload_cse_simplify_operands for an insn with asm operands.
* cccp.c (print_help): Fix typos.
* cpplib.c (print_help): Fix typos.
* toplev.c (f_optiosn): Fix typos.
......
......@@ -8688,7 +8688,7 @@ reload_cse_regs_1 (first)
if (count > 0)
apply_change_group ();
else
else if (asm_noperands (PATTERN (insn)) < 0)
reload_cse_simplify_operands (insn);
reload_cse_record_set (body, body);
......@@ -8745,7 +8745,7 @@ reload_cse_regs_1 (first)
if (count > 0)
apply_change_group ();
else
else if (asm_noperands (PATTERN (insn)) < 0)
reload_cse_simplify_operands (insn);
/* Look through the PARALLEL and record the values being
......
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