aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-13 21:52:41 +0000
committerChris Lattner <sabre@nondot.org>2006-07-13 21:52:41 +0000
commita606b70cf5167e37b92a2b41a0fc0e280ac6aaa3 (patch)
treeefa77d35aad1f3947cfb87e8b11e225037b6e086
parentf1b05bf755c3a083944f03fbf6a83892bc051065 (diff)
Another fix in the rotate encodings, needed when the first two operands are not
the same. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29136 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/PPCInstrFormats.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCInstrFormats.td b/lib/Target/PowerPC/PPCInstrFormats.td
index 94eedc3bdd..dd9dbc38e3 100644
--- a/lib/Target/PowerPC/PPCInstrFormats.td
+++ b/lib/Target/PowerPC/PPCInstrFormats.td
@@ -608,8 +608,8 @@ class MForm_2<bits<6> opcode, dag OL, string asmstr,
class MDForm_1<bits<6> opcode, bits<3> xo, dag OL, string asmstr,
InstrItinClass itin, list<dag> pattern>
: I<opcode, OL, asmstr, itin> {
- bits<5> RS;
bits<5> RA;
+ bits<5> RS;
bits<6> SH;
bits<6> MBE;