diff options
author | Nate Begeman <natebegeman@mac.com> | 2004-08-14 22:12:20 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2004-08-14 22:12:20 +0000 |
commit | b0b8b93e58f6e09c2471730ad7113f38ce04098e (patch) | |
tree | e9cccbf6dde6e8f50c4d91ec89374ed4f7b1522d | |
parent | 6d1e2dfd865927d59208ca37cef1a8832619f20b (diff) |
Add indexed forms of load doubleword and load word algebraic for 64 bit targets
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15743 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 1304958d31..f21320f5d8 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -111,7 +111,9 @@ def LHAX : XForm_1<"lhax", 31, 343, 0, 0>; def LWZ : DForm_1<"lwz", 32, 0, 0>; def LWZX : XForm_1<"lwzx", 31, 23, 0, 0>; def LWA : DSForm_1<"lwa", 58, 2, 1, 0>; +def LWAX : XForm_1<"lwax", 31, 341, 1, 0>; def LD : DSForm_2<"ld", 58, 0, 1, 0>; +def LDX : XForm_1<"ldx", 31, 21, 1, 0>; def LMW : DForm_1<"lmw", 46, 0, 0>; def STMW : DForm_3<"stmw", 47, 0, 0>; def LFS : DForm_8<"lfs", 48, 0, 0>; |