Silence warning while compiling with gcc 4.2

llvm-svn: 41676
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index ba428c5..134d276 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -81,7 +81,8 @@
 MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
   const TargetInstrInfo& TII = *getParent()->getTarget().getInstrInfo();
   iterator I = end();
-  while (I != begin() && TII.isTerminatorInstr((--I)->getOpcode()));
+  while (I != begin() && TII.isTerminatorInstr((--I)->getOpcode()))
+    ; /*noop */
   if (I != end() && !TII.isTerminatorInstr(I->getOpcode())) ++I;
   return I;
 }