From a3d3c2b64545c00f70453642e5d84b028dfce671 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 14 Jul 2001 06:13:19 +0000 Subject: * ValueHolder now takes 3 arguments * Added a few methods to ConstantPool * ConstPoolVal no longer derives from Value * Method & Module multiply inherit from SymTabValue & Value now * Added a GetElementPtrInst::isStructSelector() method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/VMCore/Module.cpp') diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp index cec75bd3fb..9d0015f769 100644 --- a/lib/VMCore/Module.cpp +++ b/lib/VMCore/Module.cpp @@ -14,10 +14,10 @@ // Instantiate Templates - This ugliness is the price we have to pay // for having a DefHolderImpl.h file seperate from DefHolder.h! :( // -template class ValueHolder; +template class ValueHolder; Module::Module() - : SymTabValue(0/*TODO: REAL TYPE*/, Value::ModuleVal, ""), + : Value(0/*TODO: REAL TYPE*/, Value::ModuleVal, ""), SymTabValue(this), MethodList(this, this) { } -- cgit v1.2.3-18-g5258