[PATCH] D39924: [PowerPC][tsan] Update tsan to handle changed memory layouts in newer kernels
Bill Seurer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 10 14:51:14 PST 2017
seurer added inline comments.
================
Comment at: lib/tsan/rtl/tsan_platform.h:345
+ static const uptr kHiAppMemBeg = 0x7e8000000000ull;
+ static const uptr kHiAppMemEnd = 0x800000000000ull; // 46 bits
+ static const uptr kAppMemMsk = 0x7c0000000000ull;
----------------
Ugh! I missed changing that comment to "47 bits". I will fix it before checking in.
https://reviews.llvm.org/D39924
More information about the llvm-commits
mailing list