aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ValueSymbolTable.h
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-05-31 20:18:28 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-05-31 20:18:28 +0000
commit37e8bde1415e16cf0950feb82460b5d7728e4676 (patch)
tree89c9755c825bb22066a904d064bfc8060b97418f /include/llvm/ValueSymbolTable.h
parentf48ec61fbd9c823c103ff8a5d035dd89c7cecb8a (diff)
downloadexternal_llvm-37e8bde1415e16cf0950feb82460b5d7728e4676.tar.gz
external_llvm-37e8bde1415e16cf0950feb82460b5d7728e4676.tar.bz2
external_llvm-37e8bde1415e16cf0950feb82460b5d7728e4676.zip
Fix build breakage on alpha, without causing it on x86. as a bonus, all platforms can invent the same number of unique names now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ValueSymbolTable.h')
-rw-r--r--include/llvm/ValueSymbolTable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ValueSymbolTable.h b/include/llvm/ValueSymbolTable.h
index df3fe18197..34fa28bd5a 100644
--- a/include/llvm/ValueSymbolTable.h
+++ b/include/llvm/ValueSymbolTable.h
@@ -127,7 +127,7 @@ public:
/// @{
private:
ValueMap vmap; ///< The map that holds the symbol table.
- mutable unsigned long LastUnique; ///< Counter for tracking unique names
+ mutable uint64_t LastUnique; ///< Counter for tracking unique names
/// @}