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]
Other format: [Raw text]

Re: Linux/m68k gas is broken.


On Fri, Nov 16, 2001 at 12:17:37AM -0800, H . J . Lu wrote:
> "make check" got
> 
> ./build-m68k-linux/gas/testsuite/gas.log:FAIL: pcrel
> ./build-m68k-linux/gas/testsuite/gas.log:FAIL: operands
> ./build-m68k-linux/gas/testsuite/gas.log:FAIL: MRI structured for
> ./build-m68k-linux/gas/testsuite/gas.log:FAIL: MRI structured repeat
> ./build-m68k-linux/gas/testsuite/gas.log:FAIL: MRI structured while

	* config/tc-m68k.c (md_apply_fix3): Change val back to a signed type.

Index: gas/config/tc-m68k.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-m68k.c,v
retrieving revision 1.33
diff -u -p -r1.33 tc-m68k.c
--- tc-m68k.c	2001/11/15 21:28:56	1.33
+++ tc-m68k.c	2001/11/16 09:32:37
@@ -4224,10 +4224,10 @@ md_number_to_chars (buf, val, n)
 void
 md_apply_fix3 (fixP, valP, seg)
      fixS *fixP;
-     valueT * valP;
+     valueT *valP;
      segT seg ATTRIBUTE_UNUSED;
 {
-  valueT val = * valP;
+  offsetT val = *valP;
   addressT upper_limit;
   offsetT lower_limit;
 


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