[compiler-rt] r353820 - tsan: update check_analyze.sh

Dmitry Vyukov via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 12 02:18:27 PST 2019


Author: dvyukov
Date: Tue Feb 12 02:18:27 2019
New Revision: 353820

URL: http://llvm.org/viewvc/llvm-project?rev=353820&view=rev
Log:
tsan: update check_analyze.sh

Update numbers after 353817.
This was extensively benchmarked in https://reviews.llvm.org/D54889


Modified:
    compiler-rt/trunk/lib/tsan/check_analyze.sh

Modified: compiler-rt/trunk/lib/tsan/check_analyze.sh
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/check_analyze.sh?rev=353820&r1=353819&r2=353820&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Tue Feb 12 02:18:27 2019
@@ -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




More information about the llvm-commits mailing list