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 | 5574cc7ede8b35672892ed36be37cd81555857ff (patch) | |
tree | b88ef21928dc8d43762367a4c561ec482b586816 /lib/Target/IA64 | |
parent | e1b10cd2c176f1e935e85258ffb1f9d28fba10ac (diff) | |
download | external_llvm-5574cc7ede8b35672892ed36be37cd81555857ff.zip external_llvm-5574cc7ede8b35672892ed36be37cd81555857ff.tar.gz external_llvm-5574cc7ede8b35672892ed36be37cd81555857ff.tar.bz2 |
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
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 eaed25e..2ab9897 100644 --- a/lib/Target/IA64/IA64InstrInfo.td +++ b/lib/Target/IA64/IA64InstrInfo.td @@ -546,7 +546,7 @@ let mayStore = 1 in { "stf.spill [$dstPtr] = $value">, isM; } -let isSimpleLoad = 1 in { +let canFoldAsLoad = 1 in { def LD1 : AForm<0x03, 0x0b, (outs GR:$dst), (ins GR:$srcPtr), "ld1 $dst = [$srcPtr]">, isM; def LD2 : AForm<0x03, 0x0b, (outs GR:$dst), (ins GR:$srcPtr), |