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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22243 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tanya Lattner 2005-06-17 04:21:09 +00:00
parent d70cee2d5a
commit 60b62aa046

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;
}