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 | 2e48a70b35635165703838fc8d3796b664207aa1 (patch) | |
tree | a6a26cefc34c30d6506057ef070a82b9768fe1fe /lib/Target/IA64 | |
parent | 920595a960fbebbf614dd159d54fc2e7ea279c22 (diff) | |
download | external_llvm-2e48a70b35635165703838fc8d3796b664207aa1.zip external_llvm-2e48a70b35635165703838fc8d3796b664207aa1.tar.gz external_llvm-2e48a70b35635165703838fc8d3796b664207aa1.tar.bz2 |
rename isStore -> mayStore to more accurately reflect what it captures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/IA64')
-rw-r--r-- | lib/Target/IA64/IA64InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/IA64/IA64InstrInfo.td b/lib/Target/IA64/IA64InstrInfo.td index 5276c42..f308228 100644 --- a/lib/Target/IA64/IA64InstrInfo.td +++ b/lib/Target/IA64/IA64InstrInfo.td @@ -541,7 +541,7 @@ def CADDIMM22 : AForm<0x03, 0x0b, (outs GR:$dst), (ins GR:$src1, s22imm:$imm, PR def SUBIMM8 : AForm<0x03, 0x0b, (outs GR:$dst), (ins s8imm:$imm, GR:$src2), "sub $dst = $imm, $src2">, isA; -let isStore = 1 in { +let mayStore = 1 in { def ST1 : AForm<0x03, 0x0b, (outs), (ins GR:$dstPtr, GR:$value), "st1 [$dstPtr] = $value">, isM; def ST2 : AForm<0x03, 0x0b, (outs), (ins GR:$dstPtr, GR:$value), |