From 136e514c544c9079170025aae7b7ce52cc086b6b Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 10 Mar 2011 10:06:04 +0000 Subject: [PATCH] * gas/config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define. * gas/config/tc-arc.c (arc_common): Use correct symbol "local" field. --- gas/ChangeLog | 6 ++++++ gas/config/obj-elf.h | 11 ++--------- gas/config/tc-arc.c | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index bd8600d0e..970cbd94b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2011-03-10 Alan Modra + + * gas/config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS, + TARGET_SYMBOL_FIELDS): Don't define. + * gas/config/tc-arc.c (arc_common): Use correct symbol "local" field. + 2011-03-09 Michael Snyder * dwarf2dbg.c (out_file_list): Free malloced 'dir'. diff --git a/gas/config/obj-elf.h b/gas/config/obj-elf.h index ccfa8d294..0721654c0 100644 --- a/gas/config/obj-elf.h +++ b/gas/config/obj-elf.h @@ -1,6 +1,7 @@ /* ELF object file format. Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, - 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc. + 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 + Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -80,14 +81,6 @@ struct elf_obj_sy #define OBJ_SYMFIELD_TYPE struct elf_obj_sy -/* Symbol fields used by the ELF back end. */ -#define ELF_TARGET_SYMBOL_FIELDS unsigned int local:1; - -/* Don't change this; change ELF_TARGET_SYMBOL_FIELDS instead. */ -#ifndef TARGET_SYMBOL_FIELDS -#define TARGET_SYMBOL_FIELDS ELF_TARGET_SYMBOL_FIELDS -#endif - #ifndef FALSE #define FALSE 0 #define TRUE !FALSE diff --git a/gas/config/tc-arc.c b/gas/config/tc-arc.c index b5d073efe..8d2da96bc 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, - 2006, 2007, 2009 Free Software Foundation, Inc. + 2006, 2007, 2009, 2011 Free Software Foundation, Inc. Contributed by Doug Evans (dje@cygnus.com). This file is part of GAS, the GNU Assembler. @@ -934,7 +934,7 @@ arc_common (int localScope) S_SET_SIZE (symbolP, size); S_SET_SEGMENT (symbolP, bss_section); S_CLEAR_EXTERNAL (symbolP); - symbolP->local = 1; + symbol_get_obj (symbolP)->local = 1; subseg_set (old_sec, old_subsec); } else -- 2.11.4.GIT