tsan: switch to 4 shadow cells by default (since that's what we use everywhere now)

llvm-svn: 168059
This commit is contained in:
Dmitry Vyukov 2012-11-15 18:44:22 +00:00
parent 7656f6dbf7
commit f34db58c20
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ const uptr kShadowCnt = TSAN_SHADOW_COUNT;
# endif
#else
// Count of shadow values in a shadow cell.
const uptr kShadowCnt = 8;
const uptr kShadowCnt = 4;
#endif
// That many user bytes are mapped onto a single shadow cell.