Fold the ShrinkDemandedOps pass into the regular DAGCombiner pass,
[oota-llvm.git] / include / llvm / Target / TargetLowering.h
index 5efebe637e1053af25262701df25702cb4a8b406..d2646fd09daed04d83127f415f721e4a0df20319 100644 (file)
@@ -766,14 +766,12 @@ public:
     SelectionDAG &DAG;
     bool LegalTys;
     bool LegalOps;
-    bool ShrinkOps;
     SDValue Old;
     SDValue New;
 
     explicit TargetLoweringOpt(SelectionDAG &InDAG,
-                               bool LT, bool LO,
-                               bool Shrink = false) :
-      DAG(InDAG), LegalTys(LT), LegalOps(LO), ShrinkOps(Shrink) {}
+                               bool LT, bool LO) :
+      DAG(InDAG), LegalTys(LT), LegalOps(LO) {}
 
     bool LegalTypes() const { return LegalTys; }
     bool LegalOperations() const { return LegalOps; }