Removed IIIi specific changes. This should be fixed to add floating point deps for the IIi.

llvm-svn: 22243
This commit is contained in:
Tanya Lattner 2005-06-17 04:21:09 +00:00
parent 123d238dc6
commit 8a78658cc0
1 changed files with 4 additions and 2 deletions

View File

@ -370,8 +370,10 @@ bool MSchedGraphSB::instrCauseException(MachineOpCode opCode) {
//Check for any floating point operation
const TargetSchedInfo *msi = Target.getSchedInfo();
InstrSchedClass sc = msi->getSchedClass(opCode);
if(sc == SPARC_FGA || sc == SPARC_FGM)
return true;
//FIXME: Should check for floating point instructions!
//if(sc == SPARC_FGA || sc == SPARC_FGM)
//return true;
return false;
}