From: Chris Lattner Date: Sun, 19 Mar 2006 04:33:37 +0000 (+0000) Subject: we don't use lmw/stmw. When we want them they are easy enough to add X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0a7bff01d0117f1c73f96fed842f6b31a4f71b4f;p=oota-llvm.git we don't use lmw/stmw. When we want them they are easy enough to add git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index d30c7f4f4f1..3b9896f6ed1 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -301,9 +301,6 @@ def LHA : DForm_1<42, (ops GPRC:$rD, memri:$src), def LHZ : DForm_1<40, (ops GPRC:$rD, memri:$src), "lhz $rD, $src", LdStGeneral, [(set GPRC:$rD, (zextload iaddr:$src, i16))]>; -def LMW : DForm_1<46, (ops GPRC:$rD, s16imm:$disp, GPRC:$rA), - "lmw $rD, $disp($rA)", LdStLMW, - []>; def LWZ : DForm_1<32, (ops GPRC:$rD, memri:$src), "lwz $rD, $src", LdStGeneral, [(set GPRC:$rD, (load iaddr:$src))]>; @@ -343,9 +340,6 @@ def LIS : DForm_2_r0<15, (ops GPRC:$rD, symbolHi:$imm), [(set GPRC:$rD, imm16Shifted:$imm)]>; } let isStore = 1, noResults = 1, PPC970_Unit = 2 in { -def STMW : DForm_3<47, (ops GPRC:$rS, s16imm:$disp, GPRC:$rA), - "stmw $rS, $disp($rA)", LdStLMW, - []>; def STB : DForm_3<38, (ops GPRC:$rS, memri:$src), "stb $rS, $src", LdStGeneral, [(truncstore GPRC:$rS, iaddr:$src, i8)]>;