[asan][mips] Fix MIPS64 Asan mapping
authorKumar Sukhani <kumarsukhani@gmail.com>
Sat, 31 Jan 2015 10:43:18 +0000 (10:43 +0000)
committerKumar Sukhani <kumarsukhani@gmail.com>
Sat, 31 Jan 2015 10:43:18 +0000 (10:43 +0000)
llvm-svn: 227684

llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp

index d7f290b..95dd46a 100644 (file)
@@ -64,7 +64,7 @@ static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
 static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000;  // < 2G.
 static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
 static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa0000;
-static const uint64_t kMIPS64_ShadowOffset64 = 1ULL << 36;
+static const uint64_t kMIPS64_ShadowOffset64 = 1ULL << 37;
 static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
 static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
 static const uint64_t kWindowsShadowOffset32 = 3ULL << 28;