mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 03:42:22 +08:00
* tm-sparc.h, xm-sparc.h: externs and macros relating to deferred
stores are target dependent and were moved from xm to tm.
This commit is contained in:
@ -44,17 +44,3 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
|
||||
#define HAVE_WAIT_STRUCT
|
||||
|
||||
/* Optimization for storing registers to the inferior. The hook
|
||||
DO_DEFERRED_STORES
|
||||
actually executes any deferred stores. It is called any time
|
||||
we are going to proceed the child, or read its registers.
|
||||
The hook CLEAR_DEFERRED_STORES is called when we want to throw
|
||||
away the inferior process, e.g. when it dies or we kill it.
|
||||
FIXME, this does not handle remote debugging cleanly. */
|
||||
|
||||
extern int deferred_stores;
|
||||
#define DO_DEFERRED_STORES \
|
||||
if (deferred_stores) \
|
||||
store_inferior_registers (-2);
|
||||
#define CLEAR_DEFERRED_STORES \
|
||||
deferred_stores = 0;
|
||||
|
Reference in New Issue
Block a user