[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon May 15 21:20:36 PDT 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCISelLowering.cpp updated: 1.170 -> 1.171
---
Log message:

Fit in 80 cols


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

 PPCISelLowering.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.170 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.171
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.170	Fri May 12 16:09:57 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp	Mon May 15 23:20:24 2006
@@ -1307,7 +1307,7 @@
   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
   
   enum {
-    OP_COPY = 0,   // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
+    OP_COPY = 0,  // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
     OP_VMRGHW,
     OP_VMRGLW,
     OP_VSPLTISW0,
@@ -1978,9 +1978,9 @@
         // free GPRs, then we can pass both halves of the i64 in registers.
         if (GPR_remaining > 0) {
           SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
-                                     Args[i].first, DAG.getConstant(1, MVT::i32));
+                                   Args[i].first, DAG.getConstant(1, MVT::i32));
           SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
-                                     Args[i].first, DAG.getConstant(0, MVT::i32));
+                                   Args[i].first, DAG.getConstant(0, MVT::i32));
           args_to_use.push_back(Hi);
           --GPR_remaining;
           if (GPR_remaining > 0) {






More information about the llvm-commits mailing list