]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Miscellaneous tiny fixes.
authorAlan Modra <amodra@gmail.com>
Tue, 5 Sep 2000 03:53:02 +0000 (03:53 +0000)
committerAlan Modra <amodra@gmail.com>
Tue, 5 Sep 2000 03:53:02 +0000 (03:53 +0000)
gas/ChangeLog
gas/expr.c
gas/testsuite/ChangeLog
gas/testsuite/gas/vtable/vtable.exp
gas/write.c

index b934e24eb07f30d890eb1e35654892951b47d28c..cdda16dcd248539219c57d444677a42a52be0e6b 100644 (file)
@@ -1,5 +1,8 @@
 2000-09-05  Alan Modra  <alan@linuxcare.com.au>
 
+       * 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.
index c8e0f468d6a0def05b1308e7a1ed331fd356e823..bc86066a5bf042437cddda3f8254c5370f9697e5 100644 (file)
@@ -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;
index c47dca7809ca70f05dad3ac73aefebf095690123..2b1d5582a4f3ad2a50c06c8d1270b6624d6b3d5b 100644 (file)
@@ -1,3 +1,7 @@
+2000-09-05  Alan Modra  <alan@linuxcare.com.au>
+
+       * gas/vtable/vtable.exp: Re-enable for hppa-elf.
+
 2000-08-29  Timothy Wall  <twall@cygnus.com>
 
         * gas/ia64/dv-mutex.s: Add stop to avoid DV error on cmp.eq.
index 28fe4dfaad0f9b1c200da756eab3fc3eef632256..f1dc57772d35d5c52380c5c9cad475f0f5228210 100644 (file)
@@ -24,7 +24,7 @@ if { ([istarget "*-*-elf*"]
       return
     }
   
-    if {[istarget "hppa*-*-*"]} then {
+    if {[istarget "hppa*64*-*-*"]} then {
       return
     }
   
index b2060b37418bd40e7e58032df7a4709d7cfd2ef3..907ba2f1b661f8a19a0f06f79c2f8222084c7873 100644 (file)
@@ -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;