mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
* config/tc-hppa.c (pa_ip): Handle new 'c' mode completers,
'X', 'M', and 'A'.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Mon Dec 31 16:48:07 2001 Jeffrey A Law (law@redhat.com)
|
||||||
|
|
||||||
|
* config/tc-hppa.c (pa_ip): Handle new 'c' mode completers,
|
||||||
|
'X', 'M', and 'A'.
|
||||||
|
|
||||||
2001-12-21 Jakub Jelinek <jakub@redhat.com>
|
2001-12-21 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* config/tc-sparc.h (TC_PARSE_CONS_EXPRESSION): Define.
|
* config/tc-sparc.h (TC_PARSE_CONS_EXPRESSION): Define.
|
||||||
|
@ -1810,6 +1810,7 @@ pa_ip (str)
|
|||||||
{
|
{
|
||||||
|
|
||||||
/* Handle a completer for an indexing load or store. */
|
/* Handle a completer for an indexing load or store. */
|
||||||
|
case 'X':
|
||||||
case 'x':
|
case 'x':
|
||||||
{
|
{
|
||||||
int uu = 0;
|
int uu = 0;
|
||||||
@ -1848,6 +1849,7 @@ pa_ip (str)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Handle a short load/store completer. */
|
/* Handle a short load/store completer. */
|
||||||
|
case 'M':
|
||||||
case 'm':
|
case 'm':
|
||||||
case 'q':
|
case 'q':
|
||||||
case 'J':
|
case 'J':
|
||||||
@ -1887,9 +1889,9 @@ pa_ip (str)
|
|||||||
else if (*args == 'e')
|
else if (*args == 'e')
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* 'J', 'm' and 'q' are the same, except for where they
|
/* 'J', 'm', 'M' and 'q' are the same, except for where they
|
||||||
encode the before/after field. */
|
encode the before/after field. */
|
||||||
if (*args == 'm')
|
if (*args == 'm' || *args == 'M')
|
||||||
{
|
{
|
||||||
opcode |= m << 5;
|
opcode |= m << 5;
|
||||||
INSERT_FIELD_AND_CONTINUE (opcode, a, 13);
|
INSERT_FIELD_AND_CONTINUE (opcode, a, 13);
|
||||||
@ -1915,6 +1917,7 @@ pa_ip (str)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Handle a stbys completer. */
|
/* Handle a stbys completer. */
|
||||||
|
case 'A':
|
||||||
case 's':
|
case 's':
|
||||||
{
|
{
|
||||||
int a = 0;
|
int a = 0;
|
||||||
|
Reference in New Issue
Block a user