diff options
| author | Will Dietz <wdietz2@illinois.edu> | 2012-08-30 00:30:21 +0000 |
|---|---|---|
| committer | Will Dietz <wdietz2@illinois.edu> | 2012-08-30 00:30:21 +0000 |
| commit | 2df50b715cb9655744cf3593479eca5fb3ec5374 (patch) | |
| tree | 8060bd18dcae1540765e36e45614255e96bfef4e | |
| parent | 3c8980646bfdccceb9ea3cd1fe6b3570c876bd96 (diff) | |
| download | bcm5719-llvm-2df50b715cb9655744cf3593479eca5fb3ec5374.tar.gz bcm5719-llvm-2df50b715cb9655744cf3593479eca5fb3ec5374.zip | |
Fix HashString's Bernstein hash to use unsigned chars, as is usually done.
Changes the hash result for strings containing characters
with values >= 128, such as UTF8 strings (not normal ASCII).
Changed mostly so we match other implementations.
llvm-svn: 162882
| -rw-r--r-- | llvm/include/llvm/ADT/StringExtras.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/StringExtras.h b/llvm/include/llvm/ADT/StringExtras.h index 655d884e7ba..36df5acadb4 100644 --- a/llvm/include/llvm/ADT/StringExtras.h +++ b/llvm/include/llvm/ADT/StringExtras.h @@ -125,7 +125,7 @@ void SplitString(StringRef Source, // X*33+c -> X*33^c static inline unsigned HashString(StringRef Str, unsigned Result = 0) { for (unsigned i = 0, e = Str.size(); i != e; ++i) - Result = Result * 33 + Str[i]; + Result = Result * 33 + (unsigned char)Str[i]; return Result; } |

