Merge pull request #1421 from asowani/master

diff --git a/Foundation/NSRange.swift b/Foundation/NSRange.swift
index b03f509..5d829e4 100644
--- a/Foundation/NSRange.swift
+++ b/Foundation/NSRange.swift
@@ -126,7 +126,7 @@
     public var hashValue: Int {
         #if arch(i386) || arch(arm)
             return Int(bitPattern: (UInt(bitPattern: location) | (UInt(bitPattern: length) << 16)))
-        #elseif arch(x86_64) || arch(arm64) || arch(s390x)
+        #elseif arch(x86_64) || arch(arm64) || arch(s390x) || arch(powerpc64le)
             return Int(bitPattern: (UInt(bitPattern: location) | (UInt(bitPattern: length) << 32)))
         #endif
     }