summaryrefslogtreecommitdiffstats
path: root/lld/include/lld
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2018-02-26 12:05:18 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2018-02-26 12:05:18 +0000
commit370bf3ef498e59dde013660379545465f2084f3f (patch)
tree5a2336e43ffec65b41cb4a03feeb9cc84e5a2b5f /lld/include/lld
parentb9ad17593511a6ea513c237bd4efd760c9fb762b (diff)
downloadbcm5719-llvm-370bf3ef498e59dde013660379545465f2084f3f.tar.gz
bcm5719-llvm-370bf3ef498e59dde013660379545465f2084f3f.zip
Revert "[Support] Replace HashString with djbHash."
It looks like some of our tests depend on the ordering of hashed values. I'm reverting my changes while I try to reproduce and fix this locally. Failing builds: lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/18388 lab.llvm.org:8011/builders/clang-cmake-x86_64-sde-avx512-linux/builds/6743 lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/15607 llvm-svn: 326082
Diffstat (limited to 'lld/include/lld')
-rw-r--r--lld/include/lld/Core/SymbolTable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/include/lld/Core/SymbolTable.h b/lld/include/lld/Core/SymbolTable.h
index cc2309a9068..9c39a6ed507 100644
--- a/lld/include/lld/Core/SymbolTable.h
+++ b/lld/include/lld/Core/SymbolTable.h
@@ -12,7 +12,7 @@
#include "lld/Common/LLVM.h"
#include "llvm/ADT/DenseSet.h"
-#include "llvm/Support/DJB.h"
+#include "llvm/ADT/StringExtras.h"
#include <cstring>
#include <map>
#include <vector>
@@ -65,7 +65,7 @@ private:
static StringRef getEmptyKey() { return StringRef(); }
static StringRef getTombstoneKey() { return StringRef(" ", 1); }
static unsigned getHashValue(StringRef const val) {
- return llvm::djbHash(val);
+ return llvm::HashString(val);
}
static bool isEqual(StringRef const lhs, StringRef const rhs) {
return lhs.equals(rhs);
OpenPOWER on IntegriCloud