[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCInstrFormats.td

Chris Lattner sabre at nondot.org
Wed Dec 6 13:35:25 PST 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCInstrFormats.td updated: 1.87 -> 1.88
---
Log message:

fix another sradi encoding bug.  This fixes Olden/health with the ppc64 jit.


---
Diffs of the changes:  (+1 -1)

 PPCInstrFormats.td |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/PowerPC/PPCInstrFormats.td
diff -u llvm/lib/Target/PowerPC/PPCInstrFormats.td:1.87 llvm/lib/Target/PowerPC/PPCInstrFormats.td:1.88
--- llvm/lib/Target/PowerPC/PPCInstrFormats.td:1.87	Wed Dec  6 14:02:54 2006
+++ llvm/lib/Target/PowerPC/PPCInstrFormats.td	Wed Dec  6 15:35:10 2006
@@ -502,8 +502,8 @@
 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






More information about the llvm-commits mailing list