Commit 5ed948ce by Jeffrey A Law Committed by Jeff Law

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
parent c6882a35
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) Sun Oct 25 14:58:05 1998 H.J. Lu (hjl@gnu.org)
* Make-lang.in (jv-scan$(exeext)): Add stamp-objlist to * Make-lang.in (jv-scan$(exeext)): Add stamp-objlist to
......
...@@ -706,6 +706,7 @@ emit_iinc (var, value, state) ...@@ -706,6 +706,7 @@ emit_iinc (var, value, state)
static void static void
emit_load_or_store (var, opcode, state) emit_load_or_store (var, opcode, state)
tree var; tree var;
int opcode;
struct jcf_partial *state; struct jcf_partial *state;
{ {
tree type = TREE_TYPE (var); tree type = TREE_TYPE (var);
......
...@@ -70,6 +70,7 @@ void ...@@ -70,6 +70,7 @@ void
emit_unicode_mangled_name (obstack, name, len) emit_unicode_mangled_name (obstack, name, len)
struct obstack *obstack; struct obstack *obstack;
char *name; char *name;
int len;
{ {
unsigned char *ptr; unsigned char *ptr;
unsigned char *limit = (unsigned char *)name + len; unsigned char *limit = (unsigned char *)name + len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment