[TSan] Update assembly test again.
authorMatt Morehouse <mascasa@google.com>
Tue, 4 Sep 2018 17:04:30 +0000 (17:04 +0000)
committerMatt Morehouse <mascasa@google.com>
Tue, 4 Sep 2018 17:04:30 +0000 (17:04 +0000)
Previous commit incorrectly updated the read1 case.

llvm-svn: 341384

compiler-rt/lib/tsan/check_analyze.sh

index bad4d38..b302ef7 100755 (executable)
@@ -34,16 +34,16 @@ check() {
   fi
 }
 
-for f in write1 write2 write4 write8; do
+for f in write1 write2 write4 write8 read2 read4 read8; do
   check $f rsp 1
   check $f push 2
   check $f pop 12
 done
 
-for f in read1 read2 read4 read8; do
+for f in read1; do
   check $f rsp 1
-  check $f push 2
-  check $f pop 12
+  check $f push 3
+  check $f pop 18
 done
 
 for f in func_entry func_exit; do