diff options
author | Dave Korn <dave.korn.cygwin@gmail.com> | 2009-04-28 04:02:30 +0000 |
---|---|---|
committer | Dave Korn <davek@gcc.gnu.org> | 2009-04-28 04:02:30 +0000 |
commit | 903db43579c8059fb643086c5492e7c58f702bfe (patch) | |
tree | 8d928aaeb69a97d8e09a630b133acffaec592668 /libjava/interpret.cc | |
parent | 33cbe42179c927948f3e0a931cc2e60d603f7319 (diff) | |
download | gcc-903db43579c8059fb643086c5492e7c58f702bfe.zip gcc-903db43579c8059fb643086c5492e7c58f702bfe.tar.gz gcc-903db43579c8059fb643086c5492e7c58f702bfe.tar.bz2 |
interpret.cc (DEBUG): Rename this ...
* interpret.cc (DEBUG): Rename this ...
(__GCJ_DEBUG): ... to this throughout.
* configure.ac: Likewise.
* interpret-run.cc: Likewise.
* prims.cc: Likewise.
* gnu/classpath/natConfiguration.cc: Likewise.
* include/java-assert.h: Likewise.
* java/io/natVMObjectInputStream.cc: Likewise.
* configure: Regenerate.
* include/config.h.in: Regenerate.
From-SVN: r146869
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r-- | libjava/interpret.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc index dc1114f..3f690d7b 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -983,7 +983,7 @@ void _Jv_InterpMethod::run (void *retp, INTERP_FFI_RAW_TYPE *args, _Jv_InterpMethod *meth) { -#undef DEBUG +#undef __GCJ_DEBUG #undef DEBUG_LOCALS_INSN #define DEBUG_LOCALS_INSN(s, t) do {} while (0) @@ -994,7 +994,7 @@ void _Jv_InterpMethod::run_debug (void *retp, INTERP_FFI_RAW_TYPE *args, _Jv_InterpMethod *meth) { -#define DEBUG +#define __GCJ_DEBUG #undef DEBUG_LOCALS_INSN #define DEBUG_LOCALS_INSN(s, t) \ do \ @@ -1719,7 +1719,7 @@ throw_class_format_error (const char *msg) CATCH_LOCATION with the method and location where the catch will occur. If the exception is not caught, these are set to 0. - This function should only be used with the DEBUG interpreter. */ + This function should only be used with the __GCJ_DEBUG interpreter. */ static void find_catch_location (::java::lang::Throwable *exc, jthread thread, jmethodID *catch_method, jlong *catch_loc) @@ -1751,7 +1751,7 @@ find_catch_location (::java::lang::Throwable *exc, jthread thread, caught (if it is caught). Like find_catch_location, this should only be called with the - DEBUG interpreter. Since a few exceptions occur outside the + __GCJ_DEBUG interpreter. Since a few exceptions occur outside the interpreter proper, it is important to not call this function without checking JVMTI_REQUESTED_EVENT(Exception) first. */ void |