forked from OSchip/llvm-project
tsan: switch to 4 shadow cells by default (since that's what we use everywhere now)
llvm-svn: 168059
This commit is contained in:
parent
7656f6dbf7
commit
f34db58c20
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue