From 039f839ca1ddb245e5139e9a8e684e44370046c3 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Sat, 22 Mar 2003 12:50:46 +0000 Subject: [PATCH] * sysdeps/mips/dl-machine.h (ELF_MIPS_GNU_GOT1_MASK): Fix harmless typo in #if test. 2003-03-22 Alexandre Oliva * sysdeps/mips/dl-machine.h (ELF_MIPS_GNU_GOT1_MASK): Fix harmless typo in #if test. --- ChangeLog | 5 +++++ sysdeps/mips/dl-machine.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 83cf76b..054f7b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-03-22 Alexandre Oliva + + * sysdeps/mips/dl-machine.h (ELF_MIPS_GNU_GOT1_MASK): Fix harmless + typo in #if test. + 2003-03-21 Andreas Jaeger * sysdeps/i386/fpu/libm-test-ulps: Update. diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index c7031dc..f644441 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 -- 2.7.4