2015-04-30 21:07:08 +00:00
|
|
|
/*
|
2015-05-10 21:04:27 +00:00
|
|
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
2015-04-30 21:07:08 +00:00
|
|
|
* PROJECT: ReactOS CRT library
|
2015-05-10 21:04:27 +00:00
|
|
|
* PURPOSE: Implementation of __jump_unwind
|
2015-04-30 21:07:08 +00:00
|
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include <kxarm.h>
|
|
|
|
|
|
|
|
/* CODE **********************************************************************/
|
|
|
|
TEXTAREA
|
|
|
|
|
2015-05-10 21:04:27 +00:00
|
|
|
LEAF_ENTRY __jump_unwind
|
2015-04-30 21:07:08 +00:00
|
|
|
__assertfail
|
|
|
|
bx lr
|
2015-05-10 21:04:27 +00:00
|
|
|
LEAF_END __jump_unwind
|
2015-04-30 21:07:08 +00:00
|
|
|
|
|
|
|
END
|
|
|
|
/* EOF */
|