mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Rename isSimpleLoad to canFoldAsLoad, to better reflect its meaning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60487 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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");
|
||||
|
Reference in New Issue
Block a user