Adjust to user changes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-01-29 00:32:00 +00:00
parent 454928eda4
commit 519ccafc18

View File

@ -20,10 +20,9 @@ namespace llvm {
class Constant : public User { class Constant : public User {
protected: protected:
inline Constant(const Type *Ty, ValueTy vty = Value::SimpleConstantVal, Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps,
const std::string& Name = "") const std::string& Name = "")
: User(Ty, vty, Name) {} : User(Ty, vty, Ops, NumOps, Name) {}
~Constant() {}
void destroyConstantImpl(); void destroyConstantImpl();
public: public: