Commit a4ebb0e6 by Gavin Romig-Koch Committed by Gavin Romig-Koch

libgcc2.c (__do_global_dtors): Protect __deregister_frame_info from multiple calls.

	* libgcc2.c (__do_global_dtors): Protect __deregister_frame_info
	from multiple calls.

From-SVN: r29979
parent 69404d6f
1999-10-14 Gavin Romig-Koch <gavin@cygnus.com>
* libgcc2.c (__do_global_dtors): Protect __deregister_frame_info
from multiple calls.
Thu Oct 14 04:54:54 1999 Richard Henderson <rth@cygnus.com>
* i386.md (call value patterns): Move to the end of the file.
......
......@@ -2867,7 +2867,14 @@ __do_global_dtors ()
}
#endif
#ifdef EH_FRAME_SECTION
__deregister_frame_info (__EH_FRAME_BEGIN__);
{
static int completed = 0;
if (! completed)
{
completed = 1;
__deregister_frame_info (__EH_FRAME_BEGIN__);
}
}
#endif
}
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment