mirror of git://sourceware.org/git/glibc.git
Remove HAVE_ELF conditional for ARM.
This commit is contained in:
parent
5155e70cbe
commit
10fd25cc3b
|
@ -1,3 +1,7 @@
|
||||||
|
2012-01-08 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* sysdeps/arm/sysdep.h: Remove non-ELF support.
|
||||||
|
|
||||||
2012-01-07 Joseph Myers <joseph@codesourcery.com>
|
2012-01-07 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/arm/preconfigure: Give error for old-ABI ARM.
|
* sysdeps/arm/preconfigure: Give error for old-ABI ARM.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
/* Assembler macros for ARM.
|
/* Assembler macros for ARM.
|
||||||
Copyright (C) 1997, 1998, 2003, 2009, 2010 Free Software Foundation, Inc.
|
Copyright (C) 1997, 1998, 2003, 2009, 2010, 2012
|
||||||
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -29,8 +30,6 @@
|
||||||
|
|
||||||
/* Syntactic details of assembler. */
|
/* Syntactic details of assembler. */
|
||||||
|
|
||||||
#ifdef HAVE_ELF
|
|
||||||
|
|
||||||
#define ALIGNARG(log2) log2
|
#define ALIGNARG(log2) log2
|
||||||
/* For ELF we need the `.type' directive to make shared libs work right. */
|
/* For ELF we need the `.type' directive to make shared libs work right. */
|
||||||
#define ASM_TYPE_DIRECTIVE(name,typearg) .type name,%##typearg;
|
#define ASM_TYPE_DIRECTIVE(name,typearg) .type name,%##typearg;
|
||||||
|
@ -42,16 +41,6 @@
|
||||||
|
|
||||||
#define PLTJMP(_x) _x##(PLT)
|
#define PLTJMP(_x) _x##(PLT)
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define ALIGNARG(log2) log2
|
|
||||||
#define ASM_TYPE_DIRECTIVE(name,type) /* Nothing is specified. */
|
|
||||||
#define ASM_SIZE_DIRECTIVE(name) /* Nothing is specified. */
|
|
||||||
|
|
||||||
#define PLTJMP(_x) _x
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* APCS-32 doesn't preserve the condition codes across function call. */
|
/* APCS-32 doesn't preserve the condition codes across function call. */
|
||||||
#ifdef __APCS_32__
|
#ifdef __APCS_32__
|
||||||
#define LOADREGS(cond, base, reglist...)\
|
#define LOADREGS(cond, base, reglist...)\
|
||||||
|
|
Loading…
Reference in New Issue