From: Alexandre Oliva Date: Sat, 22 Mar 2003 12:50:46 +0000 (+0000) Subject: * sysdeps/mips/dl-machine.h (ELF_MIPS_GNU_GOT1_MASK): Fix harmless X-Git-Tag: glibc-2.16-ports-before-merge~1401 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=721e2474d60830416b95a1a73e5d15280210f916;p=thirdparty%2Fglibc.git * sysdeps/mips/dl-machine.h (ELF_MIPS_GNU_GOT1_MASK): Fix harmless typo in #if test. --- diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index c7031dce0b0..f64444176b1 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -130,7 +130,7 @@ elf_machine_load_address (void) } /* The MSB of got[1] of a gnu object is set to identify gnu objects. */ -#ifdef _ABI64 && _MIPS_SIM == _ABI64 +#if defined _ABI64 && _MIPS_SIM == _ABI64 # define ELF_MIPS_GNU_GOT1_MASK 0x8000000000000000L #else # define ELF_MIPS_GNU_GOT1_MASK 0x80000000L