Correct calls to vec::safe_grow in conditionally compiled code.
authorMartin Sebor <msebor@redhat.com>
Fri, 28 Aug 2020 14:31:50 +0000 (08:31 -0600)
committerMartin Sebor <msebor@redhat.com>
Fri, 28 Aug 2020 14:31:50 +0000 (08:31 -0600)
gcc/ChangeLog:

* ggc-common.c (gt_pch_save): Add argument to a call.

gcc/jit/ChangeLog:

* jit-recording.c (recording::switch_::make_debug_string): Add argument
to a call.

gcc/ggc-common.c
gcc/jit/jit-recording.c

index 0d528cf455c9e627a55b7c3faa89e24f71eeaa7e..94da02f11857589d3b731c44c06af766b3d17e95 100644 (file)
@@ -506,7 +506,7 @@ gt_pch_save (FILE *f)
       if (__builtin_expect (RUNNING_ON_VALGRIND, 0))
        {
          if (vbits.length () < valid_size)
-           vbits.safe_grow (valid_size);
+           vbits.safe_grow (valid_size, true);
          get_vbits = VALGRIND_GET_VBITS (state.ptrs[i]->obj,
                                          vbits.address (), valid_size);
          if (get_vbits == 3)
index b73cd76a0a023d35baba892e728fce65aae660e4..a9e6528db69a7522c73e1416b0e5b3311f54760b 100644 (file)
@@ -6310,7 +6310,7 @@ recording::switch_::make_debug_string ()
     {
       size_t len = strlen (c->get_debug_string ());
       unsigned idx = cases_str.length ();
-      cases_str.safe_grow (idx + 1 + len);
+      cases_str.safe_grow (idx + 1 + len, true);
       cases_str[idx] = ' ';
       memcpy (&(cases_str[idx + 1]),
              c->get_debug_string (),