Commit 75b17b74 by Jeff Sturm Committed by Jeff Sturm

* verify.cc: Wrap in #ifdef INTERPRETER...#endif.

From-SVN: r46882
parent de41e41c
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.
......
......@@ -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 */
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