Fix a problem jeffc noticed


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22903 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp
index da6bf8d..1f698c1 100644
--- a/utils/TableGen/CodeGenTarget.cpp
+++ b/utils/TableGen/CodeGenTarget.cpp
@@ -257,6 +257,7 @@
           NumOps = Rec->getValueAsInt("NumMIOperands");
         } else if (Rec->getName() == "variable_ops") {
           hasVariableNumberOfOperands = true;
+          continue;
         } else
           throw "Unknown operand class '" + Rec->getName() +
                 "' in instruction '" + R->getName() + "' instruction!";