make the Value constructor protected.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106427 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-06-21 16:46:37 +00:00
parent c7bd7b7f12
commit 44781a0a79

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()