From: Michael Hayes Date: Fri, 15 Oct 1999 23:46:06 +0000 (+0000) Subject: * config/c4x/c4x.c (c4x_emit_libcall): Use ggc_alloc_string. X-Git-Tag: prereleases/libstdc++-2.92~10011 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3411b713f4bc1ac2db223a2b8138ae5af59462ac;p=thirdparty%2Fgcc.git * config/c4x/c4x.c (c4x_emit_libcall): Use ggc_alloc_string. From-SVN: r30028 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d80b7fc716b3..9b044e45722c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Oct 16 12:42:12 1999 Michael Hayes + + * config/c4x/c4x.c (c4x_emit_libcall): Use ggc_alloc_string. + Sat Oct 16 12:34:44 1999 Michael Hayes * config/c4x/c4x.c (c4x_rptb_insert): Emit rpts_top pattern diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index b927413e4b46..dd493c7d7fd9 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -1210,6 +1210,8 @@ c4x_emit_libcall (name, code, dmode, smode, noperands, operands) rtx equiv; start_sequence (); + if (ggc_p) + name = ggc_alloc_string (name, -1); libcall = gen_rtx_SYMBOL_REF (Pmode, name); switch (noperands) {