Remove MachineInstr::setIsInsideBundle().
[oota-llvm.git] / include / llvm / CodeGen / MachineInstr.h
index 2313e4404b8930cb5c8b92d3c847adb3b8630e9d..0418b0400d5d1225e4782954e1f8aab875032719 100644 (file)
@@ -200,15 +200,6 @@ public:
     return getFlag(BundledPred);
   }
 
-  /// setIsInsideBundle - Set InsideBundle bit.
-  ///
-  void setIsInsideBundle(bool Val = true) {
-    if (Val)
-      setFlag(BundledPred);
-    else
-      clearFlag(BundledPred);
-  }
-
   /// isBundled - Return true if this instruction part of a bundle. This is true
   /// if either itself or its following instruction is marked "InsideBundle".
   bool isBundled() const {