diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-06 23:38:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-06 23:38:27 +0000 |
commit | a4ce4f6987129c746aecebb3822998dedcd37817 (patch) | |
tree | ffa130c464651476fcf42894b14d41742164c5a1 /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 4d3b0f579ca500edf427ee77fafacbf44cfba1a3 (diff) | |
download | bcm5719-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.cpp | 2 |
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"); |