diff options
author | Adam Megacz <adam@xwt.org> | 2002-09-24 00:59:52 +0000 |
---|---|---|
committer | Adam Megacz <megacz@gcc.gnu.org> | 2002-09-24 00:59:52 +0000 |
commit | 2e9ac4711ce15b88629a4c47373fb16f55e632fb (patch) | |
tree | 4a3d47c12e2bcaeabdf3fadd37d8d03cfc704b53 | |
parent | 9ef1b13aac8b3473b4e6fffa930bb4e984727f1b (diff) | |
download | gcc-2e9ac4711ce15b88629a4c47373fb16f55e632fb.zip gcc-2e9ac4711ce15b88629a4c47373fb16f55e632fb.tar.gz gcc-2e9ac4711ce15b88629a4c47373fb16f55e632fb.tar.bz2 |
2002-08-23 Adam Megacz <adam@xwt.org>
* Removed extraneous ABORT()
From-SVN: r57460
-rw-r--r-- | boehm-gc/ChangeLog | 4 | ||||
-rw-r--r-- | boehm-gc/win32_threads.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 6b5ac5b..785273b 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +2002-08-23 Adam Megacz <adam@xwt.org> + + * Removed extraneous ABORT() + 2002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * Makefile.am (all-multi): Fix multilib parallel build. diff --git a/boehm-gc/win32_threads.c b/boehm-gc/win32_threads.c index d5e3920..9987fc6 100644 --- a/boehm-gc/win32_threads.c +++ b/boehm-gc/win32_threads.c @@ -134,9 +134,6 @@ void GC_push_all_stacks() (LPCONTEXT)&thread_table[i].context)) ABORT("GetThreadContext failed"); # ifdef I386 - if (thread_table[i].context.Esp >= (DWORD)thread_table[i].stack - || thread_table[i].context.Esp < (DWORD)bottom) - ABORT("Thread stack pointer out of range"); GC_push_one ((word) thread_table[i].context.Edi); GC_push_one ((word) thread_table[i].context.Esi); GC_push_one ((word) thread_table[i].context.Ebp); |