[TSan] Update test values

Similarly to before, D51985 again reduced the number of registers
required for the read/write routines causing this test to fail on
sanitizer-x86_64-linux-autoconf.

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@342092 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/tsan/check_analyze.sh b/lib/tsan/check_analyze.sh
index b302ef7..b2beb85 100755
--- a/lib/tsan/check_analyze.sh
+++ b/lib/tsan/check_analyze.sh
@@ -36,14 +36,14 @@
 
 for f in write1 write2 write4 write8 read2 read4 read8; do
   check $f rsp 1
-  check $f push 2
-  check $f pop 12
+  check $f push 1
+  check $f pop 6
 done
 
 for f in read1; do
   check $f rsp 1
-  check $f push 3
-  check $f pop 18
+  check $f push 2
+  check $f pop 12
 done
 
 for f in func_entry func_exit; do