[llvm] r216673 - Remove local TLI vars that are just duplicates of the class var. No functional change.

Sanjay Patel spatel at rotateright.com
Thu Aug 28 09:01:50 PDT 2014


Author: spatel
Date: Thu Aug 28 11:01:50 2014
New Revision: 216673

URL: http://llvm.org/viewvc/llvm-project?rev=216673&view=rev
Log:
Remove local TLI vars that are just duplicates of the class var. No functional change.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=216673&r1=216672&r2=216673&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Thu Aug 28 11:01:50 2014
@@ -6850,7 +6850,6 @@ SDValue DAGCombiner::visitFMUL(SDNode *N
   ConstantFPSDNode *N0CFP = isConstOrConstSplatFP(N0);
   ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1);
   EVT VT = N->getValueType(0);
-  const TargetLowering &TLI = DAG.getTargetLoweringInfo();
   const TargetOptions &Options = DAG.getTarget().Options;
 
   // fold vector ops
@@ -6992,7 +6991,6 @@ SDValue DAGCombiner::visitFDIV(SDNode *N
   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
   EVT VT = N->getValueType(0);
-  const TargetLowering &TLI = DAG.getTargetLoweringInfo();
   const TargetOptions &Options = DAG.getTarget().Options;
 
   // fold vector ops





More information about the llvm-commits mailing list