[compiler-rt] r363615 - Stop counting pops in tsan/check_analyze.sh.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 17 13:47:17 PDT 2019


Author: eugenis
Date: Mon Jun 17 13:47:16 2019
New Revision: 363615

URL: http://llvm.org/viewvc/llvm-project?rev=363615&view=rev
Log:
Stop counting pops in tsan/check_analyze.sh.

Summary:
It looks like LLVM has started doing less tail duplication in this code,
or something like that, resulting in a significantly smaller number of
pop instructions (16 -> 12). Removing the check.

Reviewers: vitalybuka, dvyukov

Subscribers: kubamracek, #sanitizers, llvm-commits

Tags: #sanitizers, #llvm

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

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=363615&r1=363614&r2=363615&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Mon Jun 17 13:47:16 2019
@@ -37,13 +37,11 @@ check() {
 for f in write1 write2 write4 write8; do
   check $f rsp 1
   check $f push 2
-  check $f pop 16
 done
 
 for f in read1 read2 read4 read8; do
   check $f rsp 1
   check $f push 3
-  check $f pop 24
 done
 
 for f in func_entry func_exit; do




More information about the llvm-commits mailing list