[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp

Chris Lattner sabre at nondot.org
Tue Apr 17 20:01:57 PDT 2007



Changes in directory llvm/lib/CodeGen/SelectionDAG:

TargetLowering.cpp updated: 1.111 -> 1.112
---
Log message:

fix a pasto


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

 TargetLowering.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp:1.111 llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp:1.112
--- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp:1.111	Tue Apr 17 17:53:02 2007
+++ llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp	Tue Apr 17 22:01:40 2007
@@ -583,7 +583,7 @@
           SDOperand NewSA = 
             TLO.DAG.getConstant(ShAmt-C1, Op.getOperand(1).getValueType());
           MVT::ValueType VT = Op.getValueType();
-          return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, VT,
+          return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, VT,
                                                    InOp.getOperand(0), NewSA));
         }
       }      






More information about the llvm-commits mailing list