summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/CodeGenInstruction.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-06 08:36:04 +0000
committerChris Lattner <sabre@nondot.org>2008-01-06 08:36:04 +0000
commit10324d01754c2848ccfb5b30149bedada6767591 (patch)
tree2a016724aa9efd853a5de6a96f1aef42de28f39d /llvm/utils/TableGen/CodeGenInstruction.cpp
parent1694a53c5d632c1859f3f32f8603cafb365c0c4e (diff)
downloadbcm5719-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.cpp2
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");
OpenPOWER on IntegriCloud