diff options
author | Matt Morehouse <mascasa@google.com> | 2018-09-04 17:04:30 +0000 |
---|---|---|
committer | Matt Morehouse <mascasa@google.com> | 2018-09-04 17:04:30 +0000 |
commit | 323cb70b708cc42e6aff7bca79cead92cf437a93 (patch) | |
tree | e2de3143acb3d36a2ae0192454e5b68cfd38e3c7 | |
parent | 03676279436e98a217f1986697c5adce6da293fa (diff) | |
download | compiler-rt-323cb70b708cc42e6aff7bca79cead92cf437a93.tar.gz |
[TSan] Update assembly test again.
Previous commit incorrectly updated the read1 case.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@341384 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | lib/tsan/check_analyze.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tsan/check_analyze.sh b/lib/tsan/check_analyze.sh index bad4d385f..b302ef7f7 100755 --- a/lib/tsan/check_analyze.sh +++ b/lib/tsan/check_analyze.sh @@ -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 |