diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-06 21:35:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-06 21:35:10 +0000 |
commit | c5d24596d6a87632cbc08219bc8cd48285030854 (patch) | |
tree | 1269d3efb1f87088ef7848b7d62f08b96a127efb /lib | |
parent | d10ecf7d20915c8fa3cfbcde0253f59b0f0178ce (diff) |
fix another sradi encoding bug. This fixes Olden/health with the ppc64 jit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrFormats.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCInstrFormats.td b/lib/Target/PowerPC/PPCInstrFormats.td index 4b211c4b7f..fc03653c24 100644 --- a/lib/Target/PowerPC/PPCInstrFormats.td +++ b/lib/Target/PowerPC/PPCInstrFormats.td @@ -502,8 +502,8 @@ class XFXForm_7_ext<bits<6> opcode, bits<10> xo, bits<10> spr, class XSForm_1<bits<6> opcode, bits<9> xo, dag OL, string asmstr, InstrItinClass itin, list<dag> pattern> : I<opcode, OL, asmstr, itin> { - bits<5> RS; bits<5> A; + bits<5> RS; bits<6> SH; bit RC = 0; // set by isDOT |