[TSan] Adjust expectation for check_analyze.sh

r299658 fixed a case where InstCombine was replicating instructions instead of combining. Fixing this reduced the number of pushes and pops in the __tsan_read and __tsan_write functions.

Adjust the expectations to account for this after talking to Dmitry Vyukov.

llvm-svn: 299661
This commit is contained in:
Craig Topper 2017-04-06 17:09:08 +00:00
parent ab932bcbfd
commit d3115972bf
1 changed files with 3 additions and 9 deletions

View File

@ -26,22 +26,16 @@ check() {
fi
}
for f in write1; do
for f in write1 write2 write4 write8; do
check $f rsp 1
check $f push 2
check $f pop 2
done
for f in write2 write4 write8; do
check $f rsp 1
check $f push 3
check $f pop 3
done
for f in read1 read2 read4 read8; do
check $f rsp 1
check $f push 5
check $f pop 5
check $f push 4
check $f pop 4
done
for f in func_entry func_exit; do