Delete an unused function.
[oota-llvm.git] / include / llvm / CodeGen / MachineOperand.h
index e5229479f1e2a2ec2427d0f75d0735b91e5fe4fd..b5f6bcd9e7ec897709f202d70b7c59a46b83c39b 100644 (file)
@@ -285,6 +285,11 @@ public:
     IsEarlyClobber = Val;
   }
 
+  void setIsDebug(bool Val = true) {
+    assert(isReg() && IsDef && "Wrong MachineOperand accessor");
+    IsDebug = Val;
+  }
+
   //===--------------------------------------------------------------------===//
   // Accessors for various operand types.
   //===--------------------------------------------------------------------===//