From: Alan Modra Date: Tue, 5 Sep 2000 03:53:02 +0000 (+0000) Subject: Miscellaneous tiny fixes. X-Git-Tag: newlib-1_9_0~988 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=927781e250da046613f3cca96b81dd7c8783c120;p=thirdparty%2Fbinutils-gdb.git Miscellaneous tiny fixes. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index b934e24eb07..cdda16dcd24 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ 2000-09-05 Alan Modra + * expr.c (operand): Fix a comment typo. + * write.c (write_relocs): Fix a signed/unsigned warning. + * config/tc-hppa.c (fudge_reg_expressions): New (hppa_force_reg_syms_absolute): New. (pa_equ): Allow reg_section expressions. diff --git a/gas/expr.c b/gas/expr.c index c8e0f468d6a..bc86066a5bf 100644 --- a/gas/expr.c +++ b/gas/expr.c @@ -1304,7 +1304,7 @@ operand (expressionP) { /* Let the target try to parse it. Success is indicated by changing the X_op field to something other than O_absent and pointing - input_line_pointer passed the expression. If it can't parse the + input_line_pointer past the expression. If it can't parse the expression, X_op and input_line_pointer should be unchanged. */ expressionP->X_op = O_absent; --input_line_pointer; diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index c47dca7809c..2b1d5582a4f 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2000-09-05 Alan Modra + + * gas/vtable/vtable.exp: Re-enable for hppa-elf. + 2000-08-29 Timothy Wall * gas/ia64/dv-mutex.s: Add stop to avoid DV error on cmp.eq. diff --git a/gas/testsuite/gas/vtable/vtable.exp b/gas/testsuite/gas/vtable/vtable.exp index 28fe4dfaad0..f1dc57772d3 100644 --- a/gas/testsuite/gas/vtable/vtable.exp +++ b/gas/testsuite/gas/vtable/vtable.exp @@ -24,7 +24,7 @@ if { ([istarget "*-*-elf*"] return } - if {[istarget "hppa*-*-*"]} then { + if {[istarget "hppa*64*-*-*"]} then { return } diff --git a/gas/write.c b/gas/write.c index b2060b37418..907ba2f1b66 100644 --- a/gas/write.c +++ b/gas/write.c @@ -899,7 +899,7 @@ write_relocs (abfd, sec, xxx) PTR xxx ATTRIBUTE_UNUSED; { segment_info_type *seginfo = seg_info (sec); - int i; + unsigned int i; unsigned int n; arelent **relocs; fixS *fixp;