From 2beaab59a5f374261d27b8400d522c271f7d917f Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 7 Sep 1999 19:57:23 +0000 Subject: * hppa-dis.c (print_insn_hppa): Escape '%' in output strings. --- opcodes/hppa-dis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opcodes/hppa-dis.c') diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 0e1de38..cde70fa 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -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", -- cgit v1.1