diff options
author | Jason Molenda <jmolenda@apple.com> | 2000-01-11 03:07:26 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2000-01-11 03:07:26 +0000 |
commit | 3b7c8b741463f04bc932f698f9a68c64ff797992 (patch) | |
tree | 21242aa3e34392a2bb6ed97691d153c812f2b5da /gdb/windows-nat.c | |
parent | 550262c43d373d2b9e769233047d9d12e985f738 (diff) | |
download | binutils-gdb-3b7c8b741463f04bc932f698f9a68c64ff797992.tar.gz |
import gdb-2000-01-10 snapshot
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index b5ef062ed42..a48c86d2ac2 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -571,6 +571,15 @@ handle_exception (struct target_waitstatus *ourstatus) ourstatus->value.sig = TARGET_SIGNAL_SEGV; continue_status = DBG_EXCEPTION_NOT_HANDLED; break; + case STATUS_FLOAT_UNDERFLOW: + case STATUS_FLOAT_DIVIDE_BY_ZERO: + case STATUS_FLOAT_OVERFLOW: + case STATUS_INTEGER_DIVIDE_BY_ZERO: + DEBUG_EXCEPT (("gdb: Target exception STACK_OVERFLOW at 0x%08x\n", + current_event.u.Exception.ExceptionRecord.ExceptionAddress)); + ourstatus->value.sig = TARGET_SIGNAL_FPE; + continue_status = DBG_EXCEPTION_NOT_HANDLED; + break; case STATUS_STACK_OVERFLOW: DEBUG_EXCEPT (("gdb: Target exception STACK_OVERFLOW at 0x%08x\n", current_event.u.Exception.ExceptionRecord.ExceptionAddress)); |