diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-06-30 00:55:33 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-06-30 00:55:33 +0000 |
commit | 6f0b87c3298e9ca359198263b39df239af3e6988 (patch) | |
tree | 0ad1d7530047ab2f7fad15dff15bb3d3cbea5901 /gas | |
parent | 6989f6778ef0abfdb00170264187f6a8ed0859d5 (diff) | |
download | gdb-6f0b87c3298e9ca359198263b39df239af3e6988.zip gdb-6f0b87c3298e9ca359198263b39df239af3e6988.tar.gz gdb-6f0b87c3298e9ca359198263b39df239af3e6988.tar.bz2 |
* as.c (show_usage): Break long string into shorter ones.
(parse_args): Add -v, prints version id and continues.
* config/tc-mips.c (md_show_usage): Break long string.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 11 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 10 |
2 files changed, 17 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 50471a6..425cd95 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,14 @@ +Wed Jun 29 17:30:46 1994 Stan Shebs (shebs@andros.cygnus.com) + + * as.c (show_usage): Break long string into shorter ones. + (parse_args): Add -v, prints version id and continues. + * config/tc-mips.c (md_show_usage): Break long string. + +Mon Jun 27 09:47:16 1994 J.T. Conklin (jtc@phishhead.cygnus.com) + + * config/tc-i386.c (md_parse_option): Handle "-V" and "-Q" if + OBJ_ELF is defined. + Sun Jun 26 16:30:48 1994 Stan Shebs (shebs@andros.cygnus.com) * as.c (main) [HOST_SPECIAL_INIT]: New hook, for host-specific diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 6195e9c..c34cdf4 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -4620,9 +4620,10 @@ mips_ip (str, ip) fashion is that the macro function doesn't expect to see anything which can be handled in a single constant instruction. */ - if ((offset_expr.X_op != O_constant - || offset_expr.X_add_number >= 0x8000 - || offset_expr.X_add_number < -0x8000) + if (c == 0 + && (offset_expr.X_op != O_constant + || offset_expr.X_add_number >= 0x8000 + || offset_expr.X_add_number < -0x8000) && (mips_pic != EMBEDDED_PIC || offset_expr.X_op != O_subtract || ! S_IS_LOCAL (offset_expr.X_add_symbol) @@ -5101,7 +5102,8 @@ MIPS options:\n\ -EL generate little endian output\n\ -g, -g2 do not remove uneeded NOPs or swap branches\n\ -G NUM allow referencing objects up to NUM bytes\n\ - implicitly with the gp register [default 8]\n\ + implicitly with the gp register [default 8]\n"); + fprintf(stream, "\ -mips1, -mcpu=r{2,3}000 generate code for r2000 and r3000\n\ -mips2, -mcpu=r6000 generate code for r6000\n\ -mips3, -mcpu=r4000 generate code for r4000\n\ |