* hppa-dis.c (print_insn_hppa): Escape '%' in output strings.
This commit is contained in:
parent
d1e9bd1f11
commit
2beaab59a5
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
Tue Sep 7 13:50:32 1999 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* hppa-dis.c (print_insn_hppa): Escape '%' in output strings.
|
||||
|
||||
* hppa-dis.c (print_insn_hppa): Handle 'Z' argument.
|
||||
|
||||
1999-09-07 Nick Clifton <nickc@cygnus.com>
|
||||
|
|
|
@ -766,7 +766,7 @@ print_insn_hppa (memaddr, info)
|
|||
|
||||
case 'Z':
|
||||
/* addil %r1 implicit output. */
|
||||
(*info->fprintf_func) (info->stream, "%r1");
|
||||
(*info->fprintf_func) (info->stream, "%%r1");
|
||||
break;
|
||||
|
||||
case '.':
|
||||
|
@ -778,7 +778,7 @@ print_insn_hppa (memaddr, info)
|
|||
GET_FIELD (insn, 22, 25));
|
||||
break;
|
||||
case '!':
|
||||
(*info->fprintf_func) (info->stream, "%sar");
|
||||
(*info->fprintf_func) (info->stream, "%%sar");
|
||||
break;
|
||||
case 'p':
|
||||
(*info->fprintf_func) (info->stream, "%d",
|
||||
|
|
Loading…
Reference in a new issue