This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] [JAVA] don't use UINT32 and UINT64 in interpret.cc
- From: Tom Tromey <tromey at redhat dot com>
- To: bonzini at gnu dot org
- Cc: Gcc Patch List <gcc-patches at gcc dot gnu dot org>
- Date: 14 Oct 2003 09:44:25 -0600
- Subject: Re: [PATCH] [JAVA] don't use UINT32 and UINT64 in interpret.cc
- References: <3F8C16BE.1060509@polimi.it>
- Reply-to: tromey at redhat dot com
>>>>> "Paolo" == Paolo Bonzini <paolo.bonzini@polimi.it> writes:
Paolo> - UINT32 value = (UINT32) POPI();
Paolo> + unsigned int value = (unsigned int) POPI();
How about using unsigned jint and unsigned jlong?
Those should be the right size. I'm not completely positive this
will work though.
Anyway, this idea looks fine. Please check in whatever patch you
come up with that solves the size problem.
Tom