Commit 165b263e by David Edelsohn Committed by David Edelsohn

rs6000.c (rs6000_variable_issue): Remove unnecessary else clauses.

        * config/rs6000/rs6000.c (rs6000_variable_issue): Remove unnecessary
        else clauses.

From-SVN: r63850
parent 3d713bb8
2003-03-05 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (rs6000_variable_issue): Remove unnecessary
else clauses.
2003-03-05 Michael Matz <matz@suse.de>
* i386/i386.c (ix86_save_reg): Also test
......
......@@ -12253,11 +12253,9 @@ rs6000_variable_issue (stream, verbose, insn, more)
|| type == TYPE_FPLOAD_U || type == TYPE_FPSTORE_U
|| type == TYPE_LOAD_EXT || type == TYPE_DELAYED_CR)
return more > 2 ? more - 2 : 0;
else
return more - 1;
}
else
return more - 1;
return more - 1;
}
/* Adjust the cost of a scheduling dependency. Return the new cost of
......
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