mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
4 billion names is enough for anyone. And really fix the build on alpha this time
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
539d871ce3
commit
9e3264a1ea
@ -16,6 +16,7 @@
|
||||
#define LLVM_SYMBOL_TABLE_H
|
||||
|
||||
#include "llvm/Value.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <map>
|
||||
|
||||
namespace llvm {
|
||||
@ -292,7 +293,7 @@ private:
|
||||
|
||||
/// 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;
|
||||
|
||||
/// @}
|
||||
|
||||
|
@ -138,7 +138,7 @@ private:
|
||||
/// @{
|
||||
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
|
||||
|
||||
/// @}
|
||||
|
||||
|
@ -127,7 +127,7 @@ public:
|
||||
/// @{
|
||||
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
|
||||
|
||||
/// @}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user