[compiler-rt] r301307 - [Compiler-rt][MIPS] Fix assert introduce with commit rl301171.
Nitesh Jain via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 25 06:25:40 PDT 2017
Author: nitesh.jain
Date: Tue Apr 25 08:25:40 2017
New Revision: 301307
URL: http://llvm.org/viewvc/llvm-project?rev=301307&view=rev
Log:
[Compiler-rt][MIPS] Fix assert introduce with commit rl301171.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_posix.h
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_posix.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_posix.h?rev=301307&r1=301306&r2=301307&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_posix.h (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_posix.h Tue Apr 25 08:25:40 2017
@@ -83,7 +83,7 @@ namespace __sanitizer {
#elif defined(__mips__)
const unsigned struct_kernel_stat_sz =
SANITIZER_ANDROID ? FIRST_32_SECOND_64(104, 128) :
- FIRST_32_SECOND_64(144, 216);
+ FIRST_32_SECOND_64(160, 216);
const unsigned struct_kernel_stat64_sz = 104;
#elif defined(__s390__) && !defined(__s390x__)
const unsigned struct_kernel_stat_sz = 64;
More information about the llvm-commits
mailing list