[compiler-rt] r353942 - Revert "tsan: update check_analyze.sh"

Diana Picus via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 13 04:06:14 PST 2019


Author: rovka
Date: Wed Feb 13 04:06:13 2019
New Revision: 353942

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

This reverts commit r353820, to go with the revert of r353817.

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=353942&r1=353941&r2=353942&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Wed Feb 13 04:06:13 2019
@@ -36,11 +36,17 @@ 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 read1 read2 read4 read8; do
+for f in read2 read4 read8; do
   check $f rsp 1
   check $f push 3
   check $f pop 24




More information about the llvm-commits mailing list