mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
* config/tc-hppa.c (pa_ip): Do not allow '*' in 32bit completers.
This commit is contained in:
parent
46424e052b
commit
17d9105c0a
@ -1,3 +1,7 @@
|
||||
Sat Aug 28 01:23:11 1999 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* config/tc-hppa.c (pa_ip): Do not allow '*' in 32bit completers.
|
||||
|
||||
Sat Aug 28 00:26:26 1999 Jerry Quinn <jquinn@nortelnetworks.com>
|
||||
|
||||
* config/tc-hppa.c (pa_ip): Add cases for '.', '~'. '$'. and '!'
|
||||
|
@ -1766,6 +1766,8 @@ pa_ip (str)
|
||||
else
|
||||
break;
|
||||
}
|
||||
else if (*s == '*')
|
||||
break;
|
||||
name = s;
|
||||
|
||||
while (*s != ',' && *s != ' ' && *s != '\t')
|
||||
@ -1893,6 +1895,8 @@ pa_ip (str)
|
||||
else
|
||||
break;
|
||||
}
|
||||
else if (*s == '*')
|
||||
break;
|
||||
|
||||
if (strncmp (s, "<", 1) == 0)
|
||||
{
|
||||
@ -1926,6 +1930,8 @@ pa_ip (str)
|
||||
else
|
||||
break;
|
||||
}
|
||||
else if (*s == '*')
|
||||
break;
|
||||
name = s;
|
||||
|
||||
while (*s != ',' && *s != ' ' && *s != '\t')
|
||||
@ -2061,6 +2067,8 @@ pa_ip (str)
|
||||
else
|
||||
break;
|
||||
}
|
||||
else if (*s == '*')
|
||||
break;
|
||||
name = s;
|
||||
|
||||
while (*s != ',' && *s != ' ' && *s != '\t')
|
||||
@ -2127,6 +2135,8 @@ pa_ip (str)
|
||||
else
|
||||
break;
|
||||
}
|
||||
else if (*s == '*')
|
||||
break;
|
||||
name = s;
|
||||
|
||||
while (*s != ',' && *s != ' ' && *s != '\t')
|
||||
@ -2179,6 +2189,8 @@ pa_ip (str)
|
||||
else
|
||||
break;
|
||||
}
|
||||
else if (*s == '*')
|
||||
break;
|
||||
|
||||
if (strncasecmp (s, "sbz", 3) == 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user