aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/xxhash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/xxhash.cpp')
-rw-r--r--lib/Support/xxhash.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/xxhash.cpp b/lib/Support/xxhash.cpp
index a7d990bf6a4b..df643f9bd639 100644
--- a/lib/Support/xxhash.cpp
+++ b/lib/Support/xxhash.cpp
@@ -71,12 +71,12 @@ static uint64_t mergeRound(uint64_t Acc, uint64_t Val) {
uint64_t llvm::xxHash64(StringRef Data) {
size_t Len = Data.size();
uint64_t Seed = 0;
- const char *P = Data.data();
- const char *const BEnd = P + Len;
+ const unsigned char *P = Data.bytes_begin();
+ const unsigned char *const BEnd = Data.bytes_end();
uint64_t H64;
if (Len >= 32) {
- const char *const Limit = BEnd - 32;
+ const unsigned char *const Limit = BEnd - 32;
uint64_t V1 = Seed + PRIME64_1 + PRIME64_2;
uint64_t V2 = Seed + PRIME64_2;
uint64_t V3 = Seed + 0;