From: Tom Tromey Date: Wed, 26 Jan 2000 00:56:36 +0000 (+0000) Subject: interpret.cc (run): Don't call println. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8de7c9a0eb772700cdd7259c4a909c4c4f73d5ca;p=gcc.git interpret.cc (run): Don't call println. * interpret.cc (run): Don't call println. Don't include PrintStream.h. From-SVN: r31622 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index ffe657a123b..844b848b647 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,18 @@ +Tue Jan 25 08:51:16 2000 Tom Tromey + + * interpret.cc (run): Don't call println. + Don't include PrintStream.h. + + * gcj/field.h (struct _Jv_Field): Use "jshort" as type for + nameIndex. Use "jint" as type for boffset. + * java/lang/Class.h (struct _Jv_Method): Made accflags a + _Jv_ushort. + (Class): Likewise. Also changed type of method_count, + vtable_method_count, size_in_bytes, field_count, + static_field_count, interface_count. + * gcj/array.h (__JArray): Made `length' a const jsize, not an + int. + 2000-01-21 Tom Tromey * java/lang/reflect/natConstructor.cc (newInstance): Use diff --git a/libjava/interpret.cc b/libjava/interpret.cc index ecc5193fbeb..c278758150c 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -22,7 +22,6 @@ details. */ #include #include #include -#include #include #include #include @@ -286,9 +285,6 @@ _Jv_InterpMethod::run (ffi_cif* cif, if ( find_exception (ex, inv) ) goto next_segment; - java::lang::System::out->println - (_Jv_NewStringUTF (self->name->data)); - return ex; }