diff options
author | Diana Picus <diana.picus@linaro.org> | 2019-02-13 12:06:13 +0000 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2019-02-13 12:06:13 +0000 |
commit | d1c6c0ed4f0794a32791f6b67d1c9b5f8cbcce47 (patch) | |
tree | 2483f015f455c502cb7b7ef205ba6a7977dc77c5 | |
parent | 92c6f88b7bbca3e9d7ac38944be036ec47ec55b9 (diff) | |
download | compiler-rt-d1c6c0ed4f0794a32791f6b67d1c9b5f8cbcce47.tar.gz |
Revert "tsan: update check_analyze.sh"
This reverts commit r353820, to go with the revert of r353817.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@353942 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | lib/tsan/check_analyze.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/tsan/check_analyze.sh b/lib/tsan/check_analyze.sh index a2a7e82b4..5e7a9a967 100755 --- a/lib/tsan/check_analyze.sh +++ b/lib/tsan/check_analyze.sh @@ -36,11 +36,17 @@ check() { for f in write1 write2 write4 write8; do check $f rsp 1 + check $f push 1 + check $f pop 8 +done + +for f in read1; do + check $f rsp 1 check $f push 2 check $f pop 16 done -for f in read1 read2 read4 read8; do +for f in read2 read4 read8; do check $f rsp 1 check $f push 3 check $f pop 24 |