From: Adam Megacz Date: Tue, 24 Sep 2002 00:59:04 +0000 (+0000) Subject: 2002-08-23 Adam Megacz X-Git-Tag: releases/gcc-3.2.1~254 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45f913d2ce867e3209a82b7fef5600e58f697370;p=thirdparty%2Fgcc.git 2002-08-23 Adam Megacz * Removed extraneous ABORT() From-SVN: r57459 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 6ff1f0fce93e..0fbfd8cdd790 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +2002-08-23 Adam Megacz + + * Removed extraneous ABORT() + 2002-08-14 Release Manager * GCC 3.2 Released. diff --git a/boehm-gc/win32_threads.c b/boehm-gc/win32_threads.c index d5e3920cbe4c..9987fc6426f3 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);