Make the release build work

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2097 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-04 19:19:27 +00:00
parent 6fe2e871bb
commit 8937375e4b

View File

@ -17,15 +17,10 @@
#define LLVM_SYMBOL_TABLE_H
#include "llvm/Value.h"
#include "llvm/Type.h" // FIXME: Remove
#include "llvm/ConstantVals.h" // FIXME: Remove
#include <map>
#ifndef NDEBUG // Only for assertions
#include "llvm/Type.h"
#include "llvm/ConstantVals.h"
#endif
class Type;
class SymbolTable : public AbstractTypeUser,
public std::map<const Type *,
std::map<const std::string, Value *> > {