diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:19:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:19:27 +0000 |
commit | 8937375e4bc10129edf20d2c35e71da750e07baf (patch) | |
tree | 66a51dfb5d57c3f99221447f677bcd0a185df2ca | |
parent | 6fe2e871bb7c5c5eeebc6aad43002b8aa22c23b4 (diff) |
Make the release build work
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2097 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/SymbolTable.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h index 50b933ed5a..8085101204 100644 --- a/include/llvm/SymbolTable.h +++ b/include/llvm/SymbolTable.h @@ -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 *> > { |