aboutsummaryrefslogtreecommitdiff
path: root/gdb/parse.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-01-30 00:18:17 +0000
committerAndrew Cagney <cagney@redhat.com>2002-01-30 00:18:17 +0000
commit977a303014c295a6355d53c8f9bdf810081b0b7b (patch)
tree6f268957da713c919e940ca28735b03502030a5b /gdb/parse.c
parentd07daa9780dfc6a945893538f32ff2c4ddc849e6 (diff)
downloadfsf-binutils-gdb-977a303014c295a6355d53c8f9bdf810081b0b7b.zip
fsf-binutils-gdb-977a303014c295a6355d53c8f9bdf810081b0b7b.tar.gz
fsf-binutils-gdb-977a303014c295a6355d53c8f9bdf810081b0b7b.tar.bz2
Delete REGISTER_NAME_ALIAS_HOOK.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r--gdb/parse.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/parse.c b/gdb/parse.c
index 42fccc6..75f93fe 100644
--- a/gdb/parse.c
+++ b/gdb/parse.c
@@ -117,15 +117,6 @@ target_map_name_to_register (char *str, int len)
{
int i;
- /* First try target specific aliases. We try these first because on some
- systems standard names can be context dependent (eg. $pc on a
- multiprocessor can be could be any of several PCs). */
-#ifdef REGISTER_NAME_ALIAS_HOOK
- i = REGISTER_NAME_ALIAS_HOOK (str, len);
- if (i >= 0)
- return i;
-#endif
-
/* Search architectural register name space. */
for (i = 0; i < NUM_REGS; i++)
if (REGISTER_NAME (i) && len == strlen (REGISTER_NAME (i))