Reapply r106634, now that the bug it exposed is fixed.
[oota-llvm.git] / include / llvm / Target / TargetLowering.h
index b44fa71b90e95de5a2341f5fae1a6d5252bd578d..7ba67e4c68d25b93953c427df82217d439083c6a 100644 (file)
@@ -773,14 +773,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; }