[compiler-rt] r307739 - [tsan] Update test to r307338
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 11 17:14:05 PDT 2017
Author: vitalybuka
Date: Tue Jul 11 17:14:05 2017
New Revision: 307739
URL: http://llvm.org/viewvc/llvm-project?rev=307739&view=rev
Log:
[tsan] Update test to r307338
r307338 enabled new optimization reducing number of operation in tested functions.
There is no any performance regression detectable with TsanRtlTest DISABLED_BENCH.Mop* tests.
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=307739&r1=307738&r2=307739&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Tue Jul 11 17:14:05 2017
@@ -34,8 +34,8 @@ done
for f in read1 read2 read4 read8; do
check $f rsp 1
- check $f push 4
- check $f pop 4
+ check $f push 3
+ check $f pop 3
done
for f in func_entry func_exit; do
More information about the llvm-commits
mailing list