diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-06 23:38:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-06 23:38:27 +0000 |
commit | 834f1ce0312e3d00d836f9560cb63182c2c4570f (patch) | |
tree | fa9d9d5b1ad73454fca5dd87fe5dd8b848b8bdc7 /lib/Target/PowerPC/PPCInstr64Bit.td | |
parent | 9e7aba2739fb3edb3ddcf04c5d36c7c1cccb0581 (diff) | |
download | external_llvm-834f1ce0312e3d00d836f9560cb63182c2c4570f.zip external_llvm-834f1ce0312e3d00d836f9560cb63182c2c4570f.tar.gz external_llvm-834f1ce0312e3d00d836f9560cb63182c2c4570f.tar.bz2 |
rename isLoad -> isSimpleLoad due to evan's desire to have such a predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCInstr64Bit.td')
-rw-r--r-- | lib/Target/PowerPC/PPCInstr64Bit.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/PPCInstr64Bit.td b/lib/Target/PowerPC/PPCInstr64Bit.td index 8016783..4e6348d 100644 --- a/lib/Target/PowerPC/PPCInstr64Bit.td +++ b/lib/Target/PowerPC/PPCInstr64Bit.td @@ -365,7 +365,7 @@ def RLDICR : MDForm_1<30, 1, // Sign extending loads. -let isLoad = 1, PPC970_Unit = 2 in { +let isSimpleLoad = 1, PPC970_Unit = 2 in { def LHA8: DForm_1<42, (outs G8RC:$rD), (ins memri:$src), "lha $rD, $src", LdStLHA, [(set G8RC:$rD, (sextloadi16 iaddr:$src))]>, @@ -394,7 +394,7 @@ def LHAU8 : DForm_1<43, (outs G8RC:$rD, ptr_rc:$ea_result), (ins symbolLo:$disp, } // Zero extending loads. -let isLoad = 1, PPC970_Unit = 2 in { +let isSimpleLoad = 1, PPC970_Unit = 2 in { def LBZ8 : DForm_1<34, (outs G8RC:$rD), (ins memri:$src), "lbz $rD, $src", LdStGeneral, [(set G8RC:$rD, (zextloadi8 iaddr:$src))]>; @@ -433,7 +433,7 @@ def LWZU8 : DForm_1<33, (outs G8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr), // Full 8-byte loads. -let isLoad = 1, PPC970_Unit = 2 in { +let isSimpleLoad = 1, PPC970_Unit = 2 in { def LD : DSForm_1<58, 0, (outs G8RC:$rD), (ins memrix:$src), "ld $rD, $src", LdStLD, [(set G8RC:$rD, (load ixaddr:$src))]>, isPPC64; |