aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2006-02-10 12:10:21 +0000
committerNick Clifton <nickc@redhat.com>2006-02-10 12:10:21 +0000
commit52de4c065504bb947eb0f78d46f2beece782fd97 (patch)
tree497fb60e8370c4649b7ab61a332086502ff3d3f9
parent8536c657ffc11014c02aa7811eda04ce8b05dd6b (diff)
downloadfsf-binutils-gdb-52de4c065504bb947eb0f78d46f2beece782fd97.zip
fsf-binutils-gdb-52de4c065504bb947eb0f78d46f2beece782fd97.tar.gz
fsf-binutils-gdb-52de4c065504bb947eb0f78d46f2beece782fd97.tar.bz2
Fix casts to allow for a 64-bit host.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-arc.c15
2 files changed, 13 insertions, 7 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index e3e155f..3728571 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-10 Nick Clifton <nickc@redhat.com>
+
+ * config/tc-arc.c (init_opcode_tables): Fix cast.
+ (arc_extoper, md_operand): Likewise.
+
2006-02-09 David Heine <dlheine@tensilica.com>
* config/tc-xtensa.c (xg_assembly_relax): Increment steps_taken for
diff --git a/gas/config/tc-arc.c b/gas/config/tc-arc.c
index b33256f..525b540 100644
--- a/gas/config/tc-arc.c
+++ b/gas/config/tc-arc.c
@@ -1,6 +1,6 @@
/* tc-arc.c -- Assembler for the ARC
- Copyright 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
- Free Software Foundation, Inc.
+ Copyright 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+ 2006 Free Software Foundation, Inc.
Contributed by Doug Evans (dje@cygnus.com).
This file is part of GAS, the GNU Assembler.
@@ -246,7 +246,7 @@ init_opcode_tables (int mach)
output registers into the object file's symbol table. */
symbol_table_insert (symbol_create (arc_reg_names[i].name,
reg_section,
- (int) &arc_reg_names[i],
+ (valueT) &arc_reg_names[i],
&zero_address_frag));
}
@@ -550,7 +550,7 @@ arc_extoper (int opertype)
if ((symbolP = symbol_find (name)))
{
if (S_GET_SEGMENT (symbolP) == reg_section)
- S_SET_VALUE (symbolP, (int) &ext_oper->operand);
+ S_SET_VALUE (symbolP, (valueT) &ext_oper->operand);
else
{
as_bad ("attempt to override symbol: %s", name);
@@ -564,7 +564,8 @@ arc_extoper (int opertype)
{
/* If its not there, add it. */
symbol_table_insert (symbol_create (name, reg_section,
- (int) &ext_oper->operand, &zero_address_frag));
+ (valueT) &ext_oper->operand,
+ &zero_address_frag));
}
}
@@ -1165,7 +1166,7 @@ md_operand (expressionS *expressionP)
{
input_line_pointer += l + 1;
expressionP->X_op = O_register;
- expressionP->X_add_number = (int) &ext_oper->operand;
+ expressionP->X_add_number = (offsetT) &ext_oper->operand;
return;
}
ext_oper = ext_oper->next;
@@ -1177,7 +1178,7 @@ md_operand (expressionS *expressionP)
{
input_line_pointer += l + 1;
expressionP->X_op = O_register;
- expressionP->X_add_number = (int) &arc_reg_names[i];
+ expressionP->X_add_number = (offsetT) &arc_reg_names[i];
break;
}
}