OSDN Git Service

Ignore dbg_value's.
authorEvan Cheng <evan.cheng@apple.com>
Sat, 19 Jun 2010 02:36:21 +0000 (02:36 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Sat, 19 Jun 2010 02:36:21 +0000 (02:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106373 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/Thumb2HazardRecognizer.cpp

index 1614422..3fe31a2 100644 (file)
@@ -17,7 +17,7 @@ ScheduleHazardRecognizer::HazardType
 Thumb2HazardRecognizer::getHazardType(SUnit *SU) {
   if (ITBlockSize) {
     MachineInstr *MI = SU->getInstr();
-    if (MI != ITBlockMIs[ITBlockSize-1])
+    if (!MI->isDebugValue() && MI != ITBlockMIs[ITBlockSize-1])
       return Hazard;
   }
 
@@ -42,6 +42,8 @@ void Thumb2HazardRecognizer::EmitInstruction(SUnit *SU) {
     MachineBasicBlock::iterator I = MI;
     for (unsigned i = 0; i < ITBlockSize; ++i) {
       ++I;
+      while (I->isDebugValue())
+        ++I;
       ITBlockMIs[ITBlockSize-1-i] = &*I;
     }
   }