From 6f0b87c3298e9ca359198263b39df239af3e6988 Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Thu, 30 Jun 1994 00:55:33 +0000 Subject: [PATCH] * 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. --- gas/ChangeLog | 11 +++++++++++ gas/config/tc-mips.c | 10 ++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 50471a66fa..425cd95500 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 6195e9c3a8..c34cdf440a 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\ -- 2.34.1