aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/FoldingSet.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-09-14 20:48:42 +0000
committerDan Gohman <gohman@apple.com>2007-09-14 20:48:42 +0000
commitf82e1e66cec02ecfa3c83c165bce6a2780c77914 (patch)
treed9929065c408e4b068957f71219661fc819bfe10 /lib/Support/FoldingSet.cpp
parent99da4e719c347c07d21782e628459bc4f222456f (diff)
And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoid
ambiguity. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FoldingSet.cpp')
-rw-r--r--lib/Support/FoldingSet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Support/FoldingSet.cpp b/lib/Support/FoldingSet.cpp
index 6f7f5ea4cb..0ccb3a6cc3 100644
--- a/lib/Support/FoldingSet.cpp
+++ b/lib/Support/FoldingSet.cpp
@@ -40,6 +40,9 @@ void FoldingSetImpl::NodeID::AddInteger(signed I) {
void FoldingSetImpl::NodeID::AddInteger(unsigned I) {
Bits.push_back(I);
}
+void FoldingSetImpl::NodeID::AddInteger(int64_t I) {
+ AddInteger((uint64_t)I);
+}
void FoldingSetImpl::NodeID::AddInteger(uint64_t I) {
Bits.push_back(unsigned(I));