patch 8.2.3577: overflow check fails with 32 ints
Problem: Overflow check fails with 32 ints.
Solution: Only test with 64 bit ints.
diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim
index 82379dc..1b67c85 100644
--- a/src/testdir/test_put.vim
+++ b/src/testdir/test_put.vim
@@ -149,6 +149,10 @@
endfunc
func Test_very_large_count()
+ if v:sizeofint != 8
+ throw 'Skipped: only works with 64 bit ints'
+ endif
+
new
let @" = 'x'
call assert_fails('norm 44444444444444p', 'E1240:')
diff --git a/src/version.c b/src/version.c
index c8ea131..b1c1193 100644
--- a/src/version.c
+++ b/src/version.c
@@ -758,6 +758,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3577,
+/**/
3576,
/**/
3575,