Commit 73ca11ed by Ben Elliston Committed by Ben Elliston

* cse.c (cse_insn): Fix formatting.

From-SVN: r120019
parent 81617385
2006-12-19 Ben Elliston <bje@au.ibm.com>
* cse.c (cse_insn): Fix formatting.
2006-12-18 Geoffrey Keating <geoffk@apple.com> 2006-12-18 Geoffrey Keating <geoffk@apple.com>
* doc/invoke.texi (Debugging Options): Document -g0. * doc/invoke.texi (Debugging Options): Document -g0.
......
...@@ -4499,8 +4499,7 @@ cse_insn (rtx insn, rtx libcall_insn) ...@@ -4499,8 +4499,7 @@ cse_insn (rtx insn, rtx libcall_insn)
const_elt; const_elt = const_elt->next_same_value) const_elt; const_elt = const_elt->next_same_value)
if (REG_P (const_elt->exp)) if (REG_P (const_elt->exp))
{ {
src_related = gen_lowpart (mode, src_related = gen_lowpart (mode, const_elt->exp);
const_elt->exp);
break; break;
} }
} }
...@@ -4587,8 +4586,7 @@ cse_insn (rtx insn, rtx libcall_insn) ...@@ -4587,8 +4586,7 @@ cse_insn (rtx insn, rtx libcall_insn)
larger_elt; larger_elt = larger_elt->next_same_value) larger_elt; larger_elt = larger_elt->next_same_value)
if (REG_P (larger_elt->exp)) if (REG_P (larger_elt->exp))
{ {
src_related = gen_lowpart (mode, src_related = gen_lowpart (mode, larger_elt->exp);
larger_elt->exp);
break; break;
} }
......
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