diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-02 12:19:01 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-02 12:19:01 +0000 |
commit | 8f730e4e10731e01e6e4020fa4a5da8746196f28 (patch) | |
tree | 88b66186c4253838c02a4c4053dd3fa337fc1b31 /gcc/libgcc2.c | |
parent | 86f78f3013701630fb3c5f0792c5530039d74623 (diff) | |
download | gcc-8f730e4e10731e01e6e4020fa4a5da8746196f28.tar.gz |
* libgcc2.c (__bb_exit_func): Fix line wrap problems.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47527 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 7 |
1 files changed, 5 insertions, 2 deletions
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; } |