diff options
author | Nick Clifton <nickc@redhat.com> | 2006-01-11 17:39:50 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-01-11 17:39:50 +0000 |
commit | 8ad7c533ee497f2c6a16cde705a565fcb97dfd12 (patch) | |
tree | 4f07010b3a8fe3d453dd641837800058e2cd2c4f /gas/config/tc-i370.c | |
parent | 5cd1580898b80c549ab78626bb55e912d5eea214 (diff) | |
download | gdb-8ad7c533ee497f2c6a16cde705a565fcb97dfd12.zip gdb-8ad7c533ee497f2c6a16cde705a565fcb97dfd12.tar.gz gdb-8ad7c533ee497f2c6a16cde705a565fcb97dfd12.tar.bz2 |
Fixes for building on 64-bit hosts:
* config/tc-avr.c (mod_index): New union to allow conversion
between pointers and integers.
(md_begin, avr_ldi_expression): Use it.
* config/tc-i370.c (md_assemble): Add cast for argument to print
statement.
* config/tc-tic54x.c (subsym_substitute): Likewise.
* config/tc-mn10200.c (md_assemble): Use a union to convert the
opindex field of fr_cgen structure into a pointer so that it can
be stored in a frag.
* config/tc-mn10300.c (md_assemble): Likewise.
* config/tc-frv.c (frv_debug_tomcat): Use %p to print pointer
types.
* config/tc-v850.c: Replace uses of (int) casts with correct
types.
* gas/tic54x/address.d: Work with 64bit hosts.
* gas/tic54x/addrfar.d: Likewise.
* gas/tic54x/align.d: Likewise.
* gas/tic54x/all-opcodes.d: Likewise.
* gas/tic54x/asg.d: Likewise.
* gas/tic54x/cons.d: Likewise.
* gas/tic54x/consfar.d: Likewise.
* gas/tic54x/extaddr.d: Likewise.
* gas/tic54x/field.d: Likewise.
* gas/tic54x/labels.d: Likewise.
* gas/tic54x/loop.d: Likewise.
* gas/tic54x/lp.d: Likewise.
* gas/tic54x/macro.d: Likewise.
* gas/tic54x/math.d: Likewise.
* gas/tic54x/opcodes.d: Likewise.
* gas/tic54x/sections.d: Likewise.
* gas/tic54x/set.d: Likewise.
* gas/tic54x/struct.d: Likewise.
* gas/tic54x/subsym.d: Likewise.
Diffstat (limited to 'gas/config/tc-i370.c')
-rw-r--r-- | gas/config/tc-i370.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-i370.c b/gas/config/tc-i370.c index de67ce3..d87d2d9 100644 --- a/gas/config/tc-i370.c +++ b/gas/config/tc-i370.c @@ -1,7 +1,7 @@ /* tc-i370.c -- Assembler for the IBM 360/370/390 instruction set. Loosely based on the ppc files by Linas Vepstas <linas@linas.org> 1998, 99 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005 Free Software Foundation, Inc. + 2004, 2005, 2006 Free Software Foundation, Inc. Written by Ian Lance Taylor, Cygnus Support. This file is part of GAS, the GNU Assembler. @@ -2102,7 +2102,7 @@ md_assemble (char *str) if (! register_name (&ex)) as_bad ("expecting a register for operand %d", - opindex_ptr - opcode->operands + 1); + (int) (opindex_ptr - opcode->operands + 1)); } /* Check for an address constant expression. */ |