aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/SymbolTable.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/SymbolTable.h
parentf48ec61fbd9c823c103ff8a5d035dd89c7cecb8a (diff)
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/SymbolTable.h')
-rw-r--r--include/llvm/SymbolTable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h
index 04f009681c..5083243c36 100644
--- a/include/llvm/SymbolTable.h
+++ b/include/llvm/SymbolTable.h
@@ -292,7 +292,7 @@ private:
/// This value is used to retain the last unique value used
/// by getUniqueName to generate unique names.
- mutable unsigned long LastUnique;
+ mutable uint64_t LastUnique;
/// @}