diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2019-02-12 10:18:27 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2019-02-12 10:18:27 +0000 |
commit | 19e41fb0ca4d5b8568779b6f1207fe008776b0e7 (patch) | |
tree | 43fbbb957b3a832635fe6c762f886d7f4753168c | |
parent | 6e7089ad40364aed2f0add316105d6f44f088600 (diff) | |
download | bcm5719-llvm-19e41fb0ca4d5b8568779b6f1207fe008776b0e7.tar.gz bcm5719-llvm-19e41fb0ca4d5b8568779b6f1207fe008776b0e7.zip |
tsan: update check_analyze.sh
Update numbers after 353817.
This was extensively benchmarked in https://reviews.llvm.org/D54889
llvm-svn: 353820
-rwxr-xr-x | compiler-rt/lib/tsan/check_analyze.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/compiler-rt/lib/tsan/check_analyze.sh b/compiler-rt/lib/tsan/check_analyze.sh index 5e7a9a96742..a2a7e82b47a 100755 --- a/compiler-rt/lib/tsan/check_analyze.sh +++ b/compiler-rt/lib/tsan/check_analyze.sh @@ -36,17 +36,11 @@ check() { for f in write1 write2 write4 write8; do check $f rsp 1 - check $f push 1 - check $f pop 8 -done - -for f in read1; do - check $f rsp 1 check $f push 2 check $f pop 16 done -for f in read2 read4 read8; do +for f in read1 read2 read4 read8; do check $f rsp 1 check $f push 3 check $f pop 24 |