From: Richard Kenner Date: Sun, 2 Dec 2001 12:19:01 +0000 (+0000) Subject: * libgcc2.c (__bb_exit_func): Fix line wrap problems. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a1f04b2e517d84bd0c3dd1d25148acade323b69b;p=gcc.git * libgcc2.c (__bb_exit_func): Fix line wrap problems. From-SVN: r47527 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index daadea52302..c4d195ac91e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sun Dec 2 07:12:30 2001 Richard Kenner + + * libgcc2.c (__bb_exit_func): Fix line wrap problems. + 2001-12-02 Geoff Keating * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Simplify. diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 5d424360d99..bf675ec5de6 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -1497,7 +1497,8 @@ __bb_exit_func (void) use of rationale standards here. */ time ((void *) &time_value); - fprintf (file, "Basic block profiling finished on %s\n", ctime ((void *) &time_value)); + fprintf (file, "Basic block profiling finished on %s\n", + ctime ((void *) &time_value)); /* We check the length field explicitly in order to allow compatibility with older GCC's which did not provide it. */ @@ -1842,7 +1843,9 @@ __bb_exit_trace_func (void) if (!printed_something) { - fprintf (file, "Functions in `bb.in' not executed during basic block profiling on %s\n", ctime ((void *) &time_value)); + fprintf (file, + "Functions in `bb.in' not executed during basic block profiling on %s\n", + ctime ((void *) &time_value)); printed_something = 1; }