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

Chris Lattner sabre at nondot.org
Mon Nov 6 17:52:04 PST 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCInstrFormats.td updated: 1.80 -> 1.81
---
Log message:

fix encoding of BLR


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

 PPCInstrFormats.td |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCInstrFormats.td
diff -u llvm/lib/Target/PowerPC/PPCInstrFormats.td:1.80 llvm/lib/Target/PowerPC/PPCInstrFormats.td:1.81
--- llvm/lib/Target/PowerPC/PPCInstrFormats.td:1.80	Fri Nov  3 23:42:48 2006
+++ llvm/lib/Target/PowerPC/PPCInstrFormats.td	Mon Nov  6 19:51:50 2006
@@ -405,8 +405,8 @@
   bits<7> BIBO;  // 2 bits of BI and 5 bits of BO.
   bits<3>  CR;
   
-  let BO = BIBO{0-4};
-  let BI{0-1} = BIBO{5-6};
+  let BO = BIBO{2-6};
+  let BI{0-1} = BIBO{0-1};
   let BI{2-4} = CR;
   let BH = 0;
 }






More information about the llvm-commits mailing list