diff options
Diffstat (limited to 'gdbsupport/agent.h')
-rw-r--r-- | gdbsupport/agent.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdbsupport/agent.h b/gdbsupport/agent.h index dceb33f..cf181f2 100644 --- a/gdbsupport/agent.h +++ b/gdbsupport/agent.h @@ -26,16 +26,16 @@ int agent_run_command (int pid, const char *cmd, int len); int agent_look_up_symbols (void *); -#define IPA_SYM_EXPORTED_NAME(SYM) gdb_agent_ ## SYM +#define IPA_SYM_EXPORTED_NAME(SYM) gdb_agent_##SYM /* Define an entry in an IPA symbol list array. If IPA_SYM is used, the macro IPA_SYM_STRUCT_NAME must be defined to the structure name holding the IPA symbol addresses in that particular file, before including gdbsupport/agent.h. */ -#define IPA_SYM(SYM) \ - { \ - STRINGIFY (IPA_SYM_EXPORTED_NAME (SYM)), \ - offsetof (IPA_SYM_STRUCT_NAME, addr_ ## SYM) \ +#define IPA_SYM(SYM) \ + { \ + STRINGIFY (IPA_SYM_EXPORTED_NAME (SYM)), \ + offsetof (IPA_SYM_STRUCT_NAME, addr_##SYM) \ } /* The size in bytes of the buffer used to talk to the IPA helper |