Cleanup whitespace and comments, and tweak some
prototypes, in operand type legalization.  No
functionality change.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62680 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PIC16/PIC16ISelLowering.cpp b/lib/Target/PIC16/PIC16ISelLowering.cpp
index 72f073a..ae031bc 100644
--- a/lib/Target/PIC16/PIC16ISelLowering.cpp
+++ b/lib/Target/PIC16/PIC16ISelLowering.cpp
@@ -762,9 +762,11 @@
   return Call;
 }
 
-void PIC16TargetLowering::LowerOperationWrapper(SDValue Op, 
-                                             SmallVectorImpl<SDValue>&Results,
-                                             SelectionDAG &DAG) {
+void
+PIC16TargetLowering::LowerOperationWrapper(SDNode *N,
+                                           SmallVectorImpl<SDValue>&Results,
+                                           SelectionDAG &DAG) {
+  SDValue Op = SDValue(N, 0);
   SDValue Res;
   unsigned i;
   switch (Op.getOpcode()) {
@@ -783,12 +785,12 @@
       return; 
     }
   }
-  SDNode *N = Res.getNode();
+
+  N = Res.getNode();
   unsigned NumValues = N->getNumValues(); 
-  for (i=0; i< NumValues ; i++) {
+  for (i = 0; i < NumValues ; i++) {
     Results.push_back(SDValue(N, i)); 
   }
-
 }
 
 SDValue PIC16TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {