summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-06 23:20:51 +0000
committerChris Lattner <sabre@nondot.org>2007-01-06 23:20:51 +0000
commitdff39e53f1a764c6d69345eae9dfa308f9c24871 (patch)
tree333a930c08a67ff6a2f61d3e91ed4e0b801ee841 /llvm/lib/Support
parent8a7183b5b864e81b4a3781b18041e9741d4227fb (diff)
downloadbcm5719-llvm-dff39e53f1a764c6d69345eae9dfa308f9c24871.tar.gz
bcm5719-llvm-dff39e53f1a764c6d69345eae9dfa308f9c24871.zip
wow, the link was already broken :)
llvm-svn: 32963
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r--llvm/lib/Support/CStringMap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/CStringMap.cpp b/llvm/lib/Support/CStringMap.cpp
index 6cd3745946c..31b50d2f154 100644
--- a/llvm/lib/Support/CStringMap.cpp
+++ b/llvm/lib/Support/CStringMap.cpp
@@ -36,7 +36,7 @@ static unsigned HashString(const char *Start, const char *End) {
// Bernstein hash function.
unsigned int Result = 0;
// TODO: investigate whether a modified bernstein hash function performs
- // better: http://eternallyconfuzzled.com/tuts/hashing.html#existing
+ // better: http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx
// X*33+c -> X*33^c
while (Start != End)
Result = Result * 33 + *Start++;
OpenPOWER on IntegriCloud