diff options
author | Sean Keys <skeys@ipdatasys.com> | 2012-07-27 14:13:23 +0000 |
---|---|---|
committer | Sean Keys <skeys@ipdatasys.com> | 2012-07-27 14:13:23 +0000 |
commit | 6832c67c6d4a6ae3364f34f35bcf5b2590d53fa6 (patch) | |
tree | 73f3903e5d2dd3b2d1130607f0dba8fa9f66f21e /gas | |
parent | ecdf0cbb12c1d3dff989fa7ad9fba4ed705df234 (diff) | |
download | gdb-6832c67c6d4a6ae3364f34f35bcf5b2590d53fa6.zip gdb-6832c67c6d4a6ae3364f34f35bcf5b2590d53fa6.tar.gz gdb-6832c67c6d4a6ae3364f34f35bcf5b2590d53fa6.tar.bz2 |
2012-07-27 James Murray <jsm@jsm-net.demon.co.uk>
* config/tc-m68hc11.c: Replace binary with hex for cygwin.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-m68hc11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-m68hc11.c b/gas/config/tc-m68hc11.c index 6211f9d..391a5f5 100644 --- a/gas/config/tc-m68hc11.c +++ b/gas/config/tc-m68hc11.c @@ -2221,7 +2221,7 @@ build_indexed_byte (operand *op, int format ATTRIBUTE_UNUSED, int move_insn) /* Must treat as a 16bit relocate as size of final result is unknown. */ byte <<= 3; - byte |= 0b11100010; + byte |= 0xe2; number_to_chars_bigendian (f, byte, 1); fix_new (frag_now, f - frag_now->fr_literal, 2, sym, off, 0, BFD_RELOC_M68HC12_16B); |