check for __ELF__ not __elf__

From-SVN: r26262
This commit is contained in:
Philip Blundell 1999-04-07 13:53:22 +00:00 committed by Nick Clifton
parent 94d5c4563f
commit 140fa895c6
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Apr 6 17:49:49 1999 Philip Blundell <pb@nexus.co.uk>
* config/arm/lib1funcs.asm: Test for __ELF__ not __elf__.
Wed Apr 7 14:07:34 1999 Jeffrey A Law (law@cygnus.com)
* unroll.c (copy_loop_body): Always ensure at least two insns

View file

@ -56,7 +56,7 @@ Boston, MA 02111-1307, USA. */
#define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x)
#ifdef __elf__
#ifdef __ELF__
#define __PLT__ (PLT)
#define TYPE(x) .type SYM(x),function
#define SIZE(x) .size SYM(x), . - SYM(x)