diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-12-02 12:19:01 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-12-02 07:19:01 -0500 |
commit | a1f04b2e517d84bd0c3dd1d25148acade323b69b (patch) | |
tree | 88b66186c4253838c02a4c4053dd3fa337fc1b31 /gcc/libgcc2.c | |
parent | 7e5f4beecad89b016e042e8877b48c6c198bc218 (diff) | |
download | gcc-a1f04b2e517d84bd0c3dd1d25148acade323b69b.zip gcc-a1f04b2e517d84bd0c3dd1d25148acade323b69b.tar.gz gcc-a1f04b2e517d84bd0c3dd1d25148acade323b69b.tar.bz2 |
* libgcc2.c (__bb_exit_func): Fix line wrap problems.
From-SVN: r47527
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 5d42436..bf675ec 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; } |