Reverse iterator - should be incrementing rather than decrementing.

llvm-svn: 150778
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp
index 52a9096..3ab98e1 100644
--- a/llvm/lib/CodeGen/MachineInstr.cpp
+++ b/llvm/lib/CodeGen/MachineInstr.cpp
@@ -904,9 +904,9 @@
   if (!isInsideBundle())
     return this;
   MachineBasicBlock::reverse_instr_iterator MII(this);
-  --MII;
+  ++MII;
   while (MII->isInsideBundle())
-    --MII;
+    ++MII;
   return &*MII;
 }