Handle jump tables. Test to follow soon.

llvm-svn: 133083
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 187963c..f0dc555 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1948,6 +1948,8 @@
     for (MachineInstr::mop_iterator OI = MI.operands_begin(),
            OE = MI.operands_end(); OI != OE; ++OI) {
       const MachineOperand& OP = *OI;
+      if (OP.isJTI())
+        return false;
       if (OP.isMBB() && OP.getMBB() == MBB)
         return false;
     }