Removed IIIi specific changes. This should be fixed to add floating point deps for...
authorTanya Lattner <tonic@nondot.org>
Fri, 17 Jun 2005 04:21:09 +0000 (04:21 +0000)
committerTanya Lattner <tonic@nondot.org>
Fri, 17 Jun 2005 04:21:09 +0000 (04:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22243 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SparcV9/ModuloScheduling/MSchedGraphSB.cpp

index 3297a014f0b0781e13c1b53a4bdec281f6c8dac0..a35025b66c0e8df7fc20ae5405ef1bad5ac4671d 100644 (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;
 }