diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-06 08:36:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-06 08:36:04 +0000 |
commit | 10324d01754c2848ccfb5b30149bedada6767591 (patch) | |
tree | 2a016724aa9efd853a5de6a96f1aef42de28f39d /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 1694a53c5d632c1859f3f32f8603cafb365c0c4e (diff) | |
download | bcm5719-llvm-10324d01754c2848ccfb5b30149bedada6767591.tar.gz bcm5719-llvm-10324d01754c2848ccfb5b30149bedada6767591.zip |
rename isStore -> mayStore to more accurately reflect what it captures.
llvm-svn: 45656
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 5d42d348940..07d38adcbe0 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -85,7 +85,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isBarrier = R->getValueAsBit("isBarrier"); isCall = R->getValueAsBit("isCall"); isLoad = R->getValueAsBit("isLoad"); - isStore = R->getValueAsBit("isStore"); + mayStore = R->getValueAsBit("mayStore"); isImplicitDef= R->getValueAsBit("isImplicitDef"); bool isTwoAddress = R->getValueAsBit("isTwoAddress"); isPredicable = R->getValueAsBit("isPredicable"); |