[llvm-commits] CVS: llvm/utils/TableGen/CodeGenTarget.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Aug 18 23:16:16 PDT 2005
Changes in directory llvm/utils/TableGen:
CodeGenTarget.cpp updated: 1.29 -> 1.30
---
Log message:
Fix a problem jeffc noticed
---
Diffs of the changes: (+1 -0)
CodeGenTarget.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/utils/TableGen/CodeGenTarget.cpp
diff -u llvm/utils/TableGen/CodeGenTarget.cpp:1.29 llvm/utils/TableGen/CodeGenTarget.cpp:1.30
--- llvm/utils/TableGen/CodeGenTarget.cpp:1.29 Thu Aug 18 18:38:41 2005
+++ llvm/utils/TableGen/CodeGenTarget.cpp Fri Aug 19 01:16:04 2005
@@ -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!";
More information about the llvm-commits
mailing list