diff options
author | Andrew Haley <aph@redhat.com> | 2003-06-13 12:20:45 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2003-06-13 12:20:45 +0000 |
commit | bec3e66d1a37c885eb41556e322e150b6241dfb0 (patch) | |
tree | f6a9be472e2ed22b97800e7de0cfd99ecb2818bd /libjava/include/win32-signal.h | |
parent | 12e816bf16cabc88455ac694e25ac2792a7aaa31 (diff) | |
download | gcc-bec3e66d1a37c885eb41556e322e150b6241dfb0.tar.gz |
prims.cc (catch_segv): Create exception in handler.
2003-06-12 Andrew Haley <aph@redhat.com>
* prims.cc (catch_segv): Create exception in handler.
(catch_fpe): Likewise.
(_Jv_divI, _Jv_remI, _Jv_divJ, _Jv_remJ): Likewise.
(_Jv_ThrowSignal): Remove.
* include/x86_64-signal.h (INIT_SEGV): Delete reference to nullp.
* include/default-signal.h (INIT_SEGV, INIT_FPE): Delete reference
to nullp and arithexception.
* include/dwarf2-signal.h (INIT_SEGV, INIT_FPE): Likewise.
* include/i386-signal.h (INIT_SEGV, INIT_FPE): Likewise.
* include/s390-signal.h (INIT_SEGV, INIT_FPE): Likewise.
* include/sparc-signal.h (INIT_SEGV, INIT_FPE): Likewise.
* include/win32-signal.h (INIT_SEGV, INIT_FPE): Likewise.
From-SVN: r67892
Diffstat (limited to 'libjava/include/win32-signal.h')
-rw-r--r-- | libjava/include/win32-signal.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libjava/include/win32-signal.h b/libjava/include/win32-signal.h index e12c3c36681..8d8a9e2d5bf 100644 --- a/libjava/include/win32-signal.h +++ b/libjava/include/win32-signal.h @@ -26,7 +26,6 @@ static void _name (int _dummy) #define INIT_SEGV \ do \ { \ - nullp = new java::lang::NullPointerException (); \ } \ while (0) @@ -34,8 +33,6 @@ while (0) #define INIT_FPE \ do \ { \ - arithexception = new java::lang::ArithmeticException \ - (JvNewStringLatin1 ("/ by zero")); \ } \ while (0) |