make the Value constructor protected.

llvm-svn: 106427
This commit is contained in:
Chris Lattner 2010-06-21 16:46:37 +00:00
parent cc99b3ca9e
commit 93c4a7b33b
1 changed files with 1 additions and 1 deletions

View File

@ -93,8 +93,8 @@ protected:
/// printing behavior.
virtual void printCustom(raw_ostream &O) const;
public:
Value(const Type *Ty, unsigned scid);
public:
virtual ~Value();
/// dump - Support for debugging, callable in GDB: V->dump()