diff --git a/include/llvm/User.h b/include/llvm/User.h index 570f381d1a8..919693e0829 100644 --- a/include/llvm/User.h +++ b/include/llvm/User.h @@ -95,6 +95,9 @@ public: } void setOperand(unsigned i, Value *Val) { assert(i < NumOperands && "setOperand() out of range!"); + assert((!isa((const Value*)this) || + isa((const Value*)this)) && + "Cannot mutate a constant with setOperand!"); OperandList[i] = Val; } unsigned getNumOperands() const { return NumOperands; }