jcf-write.c (emit_load_or_store): Avoid implicit int arguments.

* jcf-write.c (emit_load_or_store): Avoid implicit int arguments.
        * mangle.c (emit_unicode_mangled_name): Similarly.

From-SVN: r23382
This commit is contained in:
Jeffrey A Law 1998-10-27 23:48:07 +00:00 committed by Jeff Law
parent c6882a3561
commit 5ed948cea5
3 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Wed Oct 28 00:46:15 1998 Jeffrey A Law (law@cygnus.com)
* jcf-write.c (emit_load_or_store): Avoid implicit int arguments.
* mangle.c (emit_unicode_mangled_name): Similarly.
Sun Oct 25 14:58:05 1998 H.J. Lu (hjl@gnu.org)
* Make-lang.in (jv-scan$(exeext)): Add stamp-objlist to

View File

@ -706,6 +706,7 @@ emit_iinc (var, value, state)
static void
emit_load_or_store (var, opcode, state)
tree var;
int opcode;
struct jcf_partial *state;
{
tree type = TREE_TYPE (var);

View File

@ -70,6 +70,7 @@ void
emit_unicode_mangled_name (obstack, name, len)
struct obstack *obstack;
char *name;
int len;
{
unsigned char *ptr;
unsigned char *limit = (unsigned char *)name + len;