diff options
Diffstat (limited to 'include/llvm/Value.h')
-rw-r--r-- | include/llvm/Value.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 67af6ed..58a4c8c 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -66,8 +66,11 @@ private: friend class SymbolTable; // Allow SymbolTable to directly poke Name. ValueName *Name; +private: void operator=(const Value &); // Do not implement Value(const Value &); // Do not implement +protected: + static void destroyThis(Value*); public: Value(const Type *Ty, unsigned scid); |