diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-07-13 21:52:41 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-07-13 21:52:41 +0000 |
| commit | 077b86a078a1e6103582596c431420e523060f05 (patch) | |
| tree | 91840a0a408c3d013925a101c92cd644c95dfff5 /llvm/lib | |
| parent | a44f6269bfd26ca0d73d142736328d45042ab8a4 (diff) | |
| download | bcm5719-llvm-077b86a078a1e6103582596c431420e523060f05.tar.gz bcm5719-llvm-077b86a078a1e6103582596c431420e523060f05.zip | |
Another fix in the rotate encodings, needed when the first two operands are not
the same.
llvm-svn: 29136
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrFormats.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCInstrFormats.td b/llvm/lib/Target/PowerPC/PPCInstrFormats.td index 94eedc3bddc..dd9dbc38e36 100644 --- a/llvm/lib/Target/PowerPC/PPCInstrFormats.td +++ b/llvm/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; |

