[compiler-rt] r341384 - [TSan] Update assembly test again.

Matt Morehouse via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 4 10:04:30 PDT 2018


Author: morehouse
Date: Tue Sep  4 10:04:30 2018
New Revision: 341384

URL: http://llvm.org/viewvc/llvm-project?rev=341384&view=rev
Log:
[TSan] Update assembly test again.

Previous commit incorrectly updated the read1 case.

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=341384&r1=341383&r2=341384&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Tue Sep  4 10:04:30 2018
@@ -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




More information about the llvm-commits mailing list