This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [PATCH] PR java/10253 (""+0), version 2
- From: Richard Henderson <rth at redhat dot com>
- To: Eric Blake <ebb9 at email dot byu dot edu>
- Cc: GCJ Patches <java-patches at gcc dot gnu dot org>, gcc-patches <gcc-patches at gcc dot gnu dot org>
- Date: Thu, 10 Apr 2003 17:50:58 -0700
- Subject: Re: [PATCH] PR java/10253 (""+0), version 2
- References: <3E95891A.5020207@email.byu.edu>
On Thu, Apr 10, 2003 at 09:09:14AM -0600, Eric Blake wrote:
> + /* '0' == 060 in Java, even if the host machine is EBCDIC. */
> + *--p = '\060' + acc;
If you're going to do this, don't you need the same thing
> - *p-- = '-';
> + *--p = '-';
here?
r~