* resolve.cc (_Jv_PrepareClass): Enable verifier.
authorTom Tromey <tromey@redhat.com>
Tue, 8 Jan 2002 20:51:45 +0000 (20:51 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 8 Jan 2002 20:51:45 +0000 (20:51 +0000)
From-SVN: r48660

libjava/ChangeLog
libjava/resolve.cc

index 3e7c1ce83340c02f0c6085bd2af7f6613e6e9c53..db22179ae53081f23a95627ac20025ea4078af0b 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-08  Tom Tromey  <tromey@redhat.com>
+
+       * resolve.cc (_Jv_PrepareClass): Enable verifier.
+
 2002-01-07  Andreas Tobler <a.tobler@schweiz.ch>
 
        * java/lang/reflect/natMethod.cc: Don't include alloca.h.
index ba397c9b11901d6154c02f13a121e553604a06d4..fba6cba8e13103c461c0c315b4e27383b0574394 100644 (file)
@@ -1,6 +1,6 @@
 // resolve.cc - Code for linking and resolving classes and pool entries.
 
-/* Copyright (C) 1999, 2000, 2001  Free Software Foundation
+/* Copyright (C) 1999, 2000, 2001 , 2002 Free Software Foundation
 
    This file is part of libgcj.
 
@@ -628,8 +628,7 @@ _Jv_PrepareClass(jclass klass)
       else if (imeth != 0)             // it could be abstract
        {
          _Jv_InterpMethod *im = reinterpret_cast<_Jv_InterpMethod *> (imeth);
-         // FIXME: enable once verifier is more fully tested.
-         // _Jv_VerifyMethod (im);
+         _Jv_VerifyMethod (im);
          clz->methods[i].ncode = im->ncode ();
        }
     }