This is the mail archive of the gcc-bugs@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]

Re: Blitz bug/Internal Compiler Error



Here's the fix for the bug you reported Thursday.  I'm sorry I didn't
get to this sooner.

-- 
Mark Mitchell		mmitchell@usa.net
Stanford University	http://www.stanford.edu

Sun Oct  5 17:26:46 1997  Mark Mitchell  <mmitchell@usa.net>

	* method.c (build_underscore_int): Fix typo.

Index: method.c
===================================================================
RCS file: /home/mitchell/Repository/egcs/gcc/cp/method.c,v
retrieving revision 1.6
diff -c -p -r1.6 method.c
*** method.c	1997/10/02 06:43:01	1.6
--- method.c	1997/10/06 00:25:29
*************** build_underscore_int (int i)
*** 424,430 ****
      OB_PUTC ('_');
    icat (i);
    if (i > 9)
!     OB_PUTS ('_');
  }
  
  /* Encoding for an INTEGER_CST value.  */
--- 424,430 ----
      OB_PUTC ('_');
    icat (i);
    if (i > 9)
!     OB_PUTC ('_');
  }
  
  /* Encoding for an INTEGER_CST value.  */


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