mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-09 06:34:28 +08:00
rs6000.c (rs6000_variable_issue): Remove unnecessary else clauses.
* config/rs6000/rs6000.c (rs6000_variable_issue): Remove unnecessary else clauses. From-SVN: r63850
This commit is contained in:
parent
3d713bb882
commit
165b263e39
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user