diff options
Diffstat (limited to 'libjava/verify.cc')
-rw-r--r-- | libjava/verify.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/verify.cc b/libjava/verify.cc index 167d74c..3869bff 100644 --- a/libjava/verify.cc +++ b/libjava/verify.cc @@ -2926,8 +2926,8 @@ private: case op_new: { type t = check_class_constant (get_ushort ()); - if (t.isarray () || t.isinterface (this) || t.isabstract (this)) - verify_fail ("type is array, interface, or abstract"); + if (t.isarray ()) + verify_fail ("type is array"); t.set_uninitialized (start_PC, this); push_type (t); } |