X-Git-Url: https://git.saurik.com/apple/objc4.git/blobdiff_plain/7257e56cc9570231fcb1a302702a85f51f9a9790..8070259c3936ee823b758fc1ad1645ae016ba500:/runtime/hashtable2.mm diff --git a/runtime/hashtable2.mm b/runtime/hashtable2.mm index 478f689..20b5255 100644 --- a/runtime/hashtable2.mm +++ b/runtime/hashtable2.mm @@ -485,8 +485,8 @@ uintptr_t NXPtrHash (const void *info, const void *data) { }; uintptr_t NXStrHash (const void *info, const void *data) { - register uintptr_t hash = 0; - register unsigned char *s = (unsigned char *) data; + uintptr_t hash = 0; + unsigned char *s = (unsigned char *) data; /* unsigned to avoid a sign-extend */ /* unroll the loop */ if (s) for (; ; ) {