#define LLVM_SYMBOL_TABLE_H
#include "llvm/Value.h"
+#include "llvm/Support/DataTypes.h"
#include <map>
namespace llvm {
/// This value is used to retain the last unique value used
/// by getUniqueName to generate unique names.
- mutable uint64_t LastUnique;
+ mutable uint32_t LastUnique;
/// @}
/// @{
private:
TypeMap tmap; ///< This is the mapping of names to types.
- mutable uint64_t LastUnique; ///< Counter for tracking unique names
+ mutable uint32_t LastUnique; ///< Counter for tracking unique names
/// @}
/// @{
private:
ValueMap vmap; ///< The map that holds the symbol table.
- mutable uint64_t LastUnique; ///< Counter for tracking unique names
+ mutable uint32_t LastUnique; ///< Counter for tracking unique names
/// @}