This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java 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]

lex.c:933


-----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-----


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