diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-23 19:23:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-23 19:23:18 +0000 |
commit | 943f45208c48505d53b1a024eca0cb460735fa05 (patch) | |
tree | b84119edba8e49b6d24e311edddbbf5b0cf7bdc8 /lib/Target/PowerPC | |
parent | 9ba12359e3b4ca5bce5469d86ae38eb1237752ee (diff) | |
download | external_llvm-943f45208c48505d53b1a024eca0cb460735fa05.zip external_llvm-943f45208c48505d53b1a024eca0cb460735fa05.tar.gz external_llvm-943f45208c48505d53b1a024eca0cb460735fa05.tar.bz2 |
Fix encodings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index cfd3ad4..b550edf 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -92,7 +92,7 @@ let isBranch = 1, isTerminator = 1, isCall = 1, // register and an immediate are of this type. // let isLoad = 1 in { -def LBZ : DForm_1<35, 0, 0, (ops GPRC:$rD, s16imm:$disp, GPRC:$rA), +def LBZ : DForm_1<34, 0, 0, (ops GPRC:$rD, s16imm:$disp, GPRC:$rA), "lbz $rD, $disp($rA)">; def LHA : DForm_1<42, 0, 0, (ops GPRC:$rD, s16imm:$disp, GPRC:$rA), "lha $rD, $disp($rA)">; @@ -102,7 +102,7 @@ def LMW : DForm_1<46, 0, 0, (ops GPRC:$rD, s16imm:$disp, GPRC:$rA), "lmw $rD, $disp($rA)">; def LWZ : DForm_1<32, 0, 0, (ops GPRC:$rD, symbolLo:$disp, GPRC:$rA), "lwz $rD, $disp($rA)">; -def LWZU : DForm_1<33, 0, 0, (ops GPRC:$rD, symbolLo:$disp, GPRC:$rA), +def LWZU : DForm_1<35, 0, 0, (ops GPRC:$rD, symbolLo:$disp, GPRC:$rA), "lwzu $rD, $disp($rA)">; } def ADDI : DForm_2<14, 0, 0, (ops GPRC:$rD, GPRC:$rA, s16imm:$imm), |