This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

elf32-hppa shared lib support part 9


Miscellaneous tiny fixes.

gas/ChangeLog
	* expr.c (operand): Fix a comment typo.
	* write.c (write_relocs): Fix a signed/unsigned warning.

gas/testsuite/ChangeLog
	* gas/vtable/vtable.exp: Re-enable for hppa-elf.

Alan Modra
-- 
Linuxcare.  Support for the Revolution.

diff -uprN -x*~ -xCVS -xTAGS -x.#* binutils-current/gas/expr.c parisc/gas/expr.c
--- binutils-current/gas/expr.c	Mon Sep  4 10:21:32 2000
+++ parisc/gas/expr.c	Mon Sep  4 14:03:45 2000
@@ -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 -uprN -x*~ -xCVS -xTAGS -x.#* binutils-current/gas/write.c parisc/gas/write.c
--- binutils-current/gas/write.c	Thu Aug 24 12:12:46 2000
+++ parisc/gas/write.c	Mon Sep  4 20:47:35 2000
@@ -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;
diff -uprN -x*~ -xCVS -xTAGS -x.#* binutils-current/gas/testsuite/gas/vtable/vtable.exp parisc/gas/testsuite/gas/vtable/vtable.exp
--- binutils-current/gas/testsuite/gas/vtable/vtable.exp	Mon Jul 10 17:38:53 2000
+++ parisc/gas/testsuite/gas/vtable/vtable.exp	Mon Sep  4 23:04:58 2000
@@ -24,7 +24,7 @@ if { ([istarget "*-*-elf*"]		
       return
     }
   
-    if {[istarget "hppa*-*-*"]} then {
+    if {[istarget "hppa*64*-*-*"]} then {
       return
     }
   


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]