aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenTarget.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-08-26 20:42:52 +0000
committerChris Lattner <sabre@nondot.org>2005-08-26 20:42:52 +0000
commit5f89bf0f9df54687f4474fe13f5d1a8635d85d5a (patch)
treea77667b39d2f57396b226fd0b3980d48d335418b /utils/TableGen/CodeGenTarget.cpp
parent8b50f9b8dcd6da00ddc961ecda967719eb745dee (diff)
spell this variable right
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.cpp')
-rw-r--r--utils/TableGen/CodeGenTarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp
index 282a7ac530..b3bb46db99 100644
--- a/utils/TableGen/CodeGenTarget.cpp
+++ b/utils/TableGen/CodeGenTarget.cpp
@@ -250,7 +250,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr)
isCommutable = R->getValueAsBit("isCommutable");
isTerminator = R->getValueAsBit("isTerminator");
hasDelaySlot = R->getValueAsBit("hasDelaySlot");
- usesCustomDAGSChedInserter = R->getValueAsBit("usesCustomDAGSChedInserter");
+ usesCustomDAGSchedInserter = R->getValueAsBit("usesCustomDAGSChedInserter");
hasVariableNumberOfOperands = false;
try {