This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix line wraps in libgcc2.c


Sun Dec  2 07:12:30 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

	* libgcc2.c (__bb_exit_func): Fix line wrap problems.

*** libgcc2.c	2001/11/19 11:28:47	1.128
--- libgcc2.c	2001/12/02 12:16:57
*************** __bb_exit_func (void)
*** 1498,1502 ****
  
        time ((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
--- 1498,1503 ----
  
        time ((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
*************** __bb_exit_trace_func (void)
*** 1843,1847 ****
            if (!printed_something)
              {
!               fprintf (file, "Functions in `bb.in' not executed during basic block profiling on %s\n", ctime ((void *) &time_value));
                printed_something = 1;
              }
--- 1844,1850 ----
            if (!printed_something)
              {
!               fprintf (file,
!       "Functions in `bb.in' not executed during basic block profiling on %s\n",
! 		       ctime ((void *) &time_value));
                printed_something = 1;
              }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]