summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/CodeGenInstruction.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-06 23:38:27 +0000
committerChris Lattner <sabre@nondot.org>2008-01-06 23:38:27 +0000
commita4ce4f6987129c746aecebb3822998dedcd37817 (patch)
treeffa130c464651476fcf42894b14d41742164c5a1 /llvm/utils/TableGen/CodeGenInstruction.cpp
parent4d3b0f579ca500edf427ee77fafacbf44cfba1a3 (diff)
downloadbcm5719-llvm-a4ce4f6987129c746aecebb3822998dedcd37817.tar.gz
bcm5719-llvm-a4ce4f6987129c746aecebb3822998dedcd37817.zip
rename isLoad -> isSimpleLoad due to evan's desire to have such a predicate.
llvm-svn: 45667
Diffstat (limited to 'llvm/utils/TableGen/CodeGenInstruction.cpp')
-rw-r--r--llvm/utils/TableGen/CodeGenInstruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.cpp b/llvm/utils/TableGen/CodeGenInstruction.cpp
index 07d38adcbe0..4d8693777df 100644
--- a/llvm/utils/TableGen/CodeGenInstruction.cpp
+++ b/llvm/utils/TableGen/CodeGenInstruction.cpp
@@ -84,7 +84,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr)
isIndirectBranch = R->getValueAsBit("isIndirectBranch");
isBarrier = R->getValueAsBit("isBarrier");
isCall = R->getValueAsBit("isCall");
- isLoad = R->getValueAsBit("isLoad");
+ isSimpleLoad = R->getValueAsBit("isSimpleLoad");
mayStore = R->getValueAsBit("mayStore");
isImplicitDef= R->getValueAsBit("isImplicitDef");
bool isTwoAddress = R->getValueAsBit("isTwoAddress");
OpenPOWER on IntegriCloud