This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
lex.c:933
- From: Tony Kimball <alk at pobox dot com>
- To: java-patches at gcc dot gnu dot org
- Date: Sun, 7 Jul 2002 23:51:11 -0500
- Subject: lex.c:933
- Organization: little or none
- Reply-to: alk at pobox dot com
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
The test
if (c == UEOF)
fails in my HEAD workspace sometimes, because c gets set to
(int)(unicode_t)UEOF, which is 65335 and is != -1 (i.e. UEOF).
I hacked around it by changing the test to
if ((unicode_t)c == (unicode_t)UEOF)
but I suppose the real fix is to make java_get_unicode return the right thing.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iD8DBQE9KRpDiZRIr8ozroIRAvjbAJ9fWULWf4s1BcjfUcq+tWbIofwm1gCfd5fC
kinltwkQ6tIXr3Sn44vEbOw=
=Lh25
-----END PGP SIGNATURE-----