[compiler-rt] r347442 - tsan: Update measurements in check_analyze.sh.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 21 16:47:37 PST 2018


Author: pcc
Date: Wed Nov 21 16:47:37 2018
New Revision: 347442

URL: http://llvm.org/viewvc/llvm-project?rev=347442&view=rev
Log:
tsan: Update measurements in check_analyze.sh.

These changed as a result of r347379. Unfortunately there was a
regression; filed PR39748 to track it.

Differential Revision: https://reviews.llvm.org/D54821

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=347442&r1=347441&r2=347442&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Wed Nov 21 16:47:37 2018
@@ -34,13 +34,13 @@ check() {
   fi
 }
 
-for f in write1 write2 write4 write8 read2 read4 read8; do
+for f in write1 write2 write4 write8 read2 read4; do
   check $f rsp 1
   check $f push 1
   check $f pop 6
 done
 
-for f in read1; do
+for f in read1 read8; do
   check $f rsp 1
   check $f push 2
   check $f pop 12




More information about the llvm-commits mailing list