[compiler-rt] r341381 - [TSan] Update assembly code check.

Matt Morehouse via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 4 09:34:26 PDT 2018


Author: morehouse
Date: Tue Sep  4 09:34:26 2018
New Revision: 341381

URL: http://llvm.org/viewvc/llvm-project?rev=341381&view=rev
Log:
[TSan] Update assembly code check.

The new assembly makes our benchmark faster, so it should be safe to
update the check.

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=341381&r1=341380&r2=341381&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Tue Sep  4 09:34:26 2018
@@ -42,8 +42,8 @@ done
 
 for f in read1 read2 read4 read8; do
   check $f rsp 1
-  check $f push 3
-  check $f pop 18
+  check $f push 2
+  check $f pop 12
 done
 
 for f in func_entry func_exit; do




More information about the llvm-commits mailing list