[llvm-commits] CVS: llvm/lib/Support/CStringMap.cpp

Chris Lattner sabre at nondot.org
Sat Jan 6 15:21:06 PST 2007



Changes in directory llvm/lib/Support:

CStringMap.cpp updated: 1.2 -> 1.3
---
Log message:

wow, the link was already broken :)


---
Diffs of the changes:  (+1 -1)

 CStringMap.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Support/CStringMap.cpp
diff -u llvm/lib/Support/CStringMap.cpp:1.2 llvm/lib/Support/CStringMap.cpp:1.3
--- llvm/lib/Support/CStringMap.cpp:1.2	Sat Jan  6 17:19:38 2007
+++ llvm/lib/Support/CStringMap.cpp	Sat Jan  6 17:20:51 2007
@@ -36,7 +36,7 @@
   // 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++;






More information about the llvm-commits mailing list