diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2015-02-03 07:41:25 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2015-03-11 09:01:05 -0400 |
commit | 5ca10a0c9ad1edb3b2e2e59ac6dccdd879cf84ae (patch) | |
tree | 57db9c5b8cdfe2481b147f30b6e5d3987e1899e0 /nptl_db/db-symbols.h | |
parent | b42e14ff3e59c0cf083d6a7a523b9904297ca1d4 (diff) | |
download | glibc-5ca10a0c9ad1edb3b2e2e59ac6dccdd879cf84ae.tar.gz glibc-5ca10a0c9ad1edb3b2e2e59ac6dccdd879cf84ae.tar.xz glibc-5ca10a0c9ad1edb3b2e2e59ac6dccdd879cf84ae.zip |
powerpc: Remove HAVE_ASM_GLOBAL_DOT_NAME define
With AIX port deprecated there is no need to check/define HAVE_ASM_GLOBAL_DOT_NAME anymore since the current minimum binutils supported (2.22) does not emit global symbol with dot. This patch removes all the HAVE_ASM_GLOBAL_DOT_NAME definition and checks for powerpc64 port.
Diffstat (limited to 'nptl_db/db-symbols.h')
-rw-r--r-- | nptl_db/db-symbols.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nptl_db/db-symbols.h b/nptl_db/db-symbols.h index 47fe951e86..0f27e67d93 100644 --- a/nptl_db/db-symbols.h +++ b/nptl_db/db-symbols.h @@ -16,11 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#ifdef HAVE_ASM_GLOBAL_DOT_NAME -# define DOT(x) .##x /* PPC64 requires . prefix on code symbols. */ -#else -# define DOT(x) x /* No prefix. */ -#endif +#define DOT(x) x /* No prefix. */ #define STRINGIFY(name) STRINGIFY_1(name) #define STRINGIFY_1(name) #name |