diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-03 18:15:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-03 18:15:48 +0000 |
commit | 69cc2cbbff5232ac55a8387856b17c148e7663dd (patch) | |
tree | 0ffe280ade3a93d429a948ad52dc3b3a9b3dcf34 /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 78407ac8e5cff3ed29609402c811df44651a900a (diff) | |
download | bcm5719-llvm-69cc2cbbff5232ac55a8387856b17c148e7663dd.tar.gz bcm5719-llvm-69cc2cbbff5232ac55a8387856b17c148e7663dd.zip |
Rename isSimpleLoad to canFoldAsLoad, to better reflect its meaning.
llvm-svn: 60487
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 a8f747647dc..185db01418b 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"); - isSimpleLoad = R->getValueAsBit("isSimpleLoad"); + canFoldAsLoad = R->getValueAsBit("canFoldAsLoad"); mayLoad = R->getValueAsBit("mayLoad"); mayStore = R->getValueAsBit("mayStore"); bool isTwoAddress = R->getValueAsBit("isTwoAddress"); |