diff options
author | Nick Clifton <nickc@redhat.com> | 2010-06-16 15:12:49 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-06-16 15:12:49 +0000 |
commit | f744b8ffbb5d48bb54e06f720049d278b4ebc2a3 (patch) | |
tree | 09c912ca6b33c4f99de62274c6131137cc28df08 | |
parent | 8a039d745ceafac797c3acc5e0a7ce99f45f4c32 (diff) | |
download | gdb-f744b8ffbb5d48bb54e06f720049d278b4ebc2a3.tar.gz |
2010-06-16 Vincent Rivire <vincent.riviere@freesbee.fr>
PR binutils/11676
* m68k-dis.c (print_insn_arg): Prefix float constants with #0e.
2010-06-16 Nick Clifton <nickc@redhat.com>
PR binutils/11676
* gas/m68k/pr11676.s: New test.
* gas/m68k/pr11676.d: Expected disassembly.
* gas/m68k/all.exp: Run the new test.
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/m68k-dis.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 8f283dd253d..c22f0d76920 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2010-06-16 Vincent Rivière <vincent.riviere@freesbee.fr> + + PR binutils/11676 + * m68k-dis.c (print_insn_arg): Prefix float constants with #0e. + 2010-06-14 Sebastian Andrzej Siewior <bigeasy@linutronix.de> * ppc-dis.c (ppc_opts): Remove PPC_OPCODE_E500MC from e500 and diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index e136a2535c7..0bbf0379d89 100644 --- a/opcodes/m68k-dis.c +++ b/opcodes/m68k-dis.c @@ -1111,7 +1111,7 @@ print_insn_arg (const char *d, return -1; } if (flt_p) /* Print a float? */ - (*info->fprintf_func) (info->stream, "#%g", flval); + (*info->fprintf_func) (info->stream, "#0e%g", flval); else (*info->fprintf_func) (info->stream, "#%d", val); break; |