diff options
-rwxr-xr-x | compiler-rt/lib/tsan/check_analyze.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/tsan/check_analyze.sh b/compiler-rt/lib/tsan/check_analyze.sh index 61934fb3f4e..65c34d466da 100755 --- a/compiler-rt/lib/tsan/check_analyze.sh +++ b/compiler-rt/lib/tsan/check_analyze.sh @@ -34,13 +34,13 @@ check() { fi } -for f in write1 write2 write4 write8 read2 read4 read8; do +for f in write1 write2 write4 write8 read2 read4; do check $f rsp 1 check $f push 1 check $f pop 6 done -for f in read1; do +for f in read1 read8; do check $f rsp 1 check $f push 2 check $f pop 12 |