diff options
-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 *> > { |