This is the mail archive of the
binutils@sources.redhat.com
mailing list for the binutils project.
Re: Linux/m68k gas is broken.
- From: Alan Modra <amodra at bigpond dot net dot au>
- To: "H . J . Lu" <hjl at lucon dot org>
- Cc: binutils at sourceware dot cygnus dot com
- Date: Fri, 16 Nov 2001 20:03:50 +1030
- Subject: Re: Linux/m68k gas is broken.
- References: <20011116001737.A26474@lucon.org>
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;