* verify.cc: Wrap in #ifdef INTERPRETER...#endif.
authorjsturm <jsturm@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Nov 2001 17:33:45 +0000 (17:33 +0000)
committerjsturm <jsturm@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Nov 2001 17:33:45 +0000 (17:33 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46882 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/verify.cc

index d044466..71c52d0 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-09  Jeff Sturm  <jsturm@one-point.com>
+
+       * verify.cc: Wrap in #ifdef INTERPRETER...#endif.
+
 2001-11-07  Tom Tromey  <tromey@redhat.com>
 
        * verify.cc (skip_padding): Fail if padding byte is nonzero.
index 272a9eb..49bc0f4 100644 (file)
@@ -17,6 +17,8 @@ details.  */
 #include <java-insns.h>
 #include <java-interp.h>
 
+#ifdef INTERPRETER
+
 #include <java/lang/Class.h>
 #include <java/lang/VerifyError.h>
 #include <java/lang/Throwable.h>
@@ -2435,3 +2437,5 @@ verify_fail (char *s)
   strcat (buf, s);
   throw new java::lang::VerifyError (JvNewStringLatin1 (buf));
 }
+
+#endif /* INTERPRETER */