diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2018-08-02 16:15:57 +0200 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2018-08-16 19:18:45 +0200 |
commit | c19fd07ee5fbf1100f9f1890543e9de832d6e9c6 (patch) | |
tree | 420283e58b57d876f3f0b63d67007ab5095ef4e5 /include/elf.h | |
parent | 59488dda1f16c0259bc2610d8d71686ef436c649 (diff) |
elf: Remove duplicate preprocessor constant definition
Remove duplicate preprocessor constant definition for EF_MIPS_ARCH.
The duplicate was introduced in commit 45506bdd. It placed the
constant EF_MIPS_ARCH in a better place, however it did not remove
the original. This patch removes the original occurrence.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'include/elf.h')
-rw-r--r-- | include/elf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/elf.h b/include/elf.h index 934dbbd6b3..60f6cbef0a 100644 --- a/include/elf.h +++ b/include/elf.h @@ -61,7 +61,6 @@ typedef int64_t Elf64_Sxword; #define EF_MIPS_ABI 0x0000f000 #define EF_MIPS_FP64 0x00000200 #define EF_MIPS_NAN2008 0x00000400 -#define EF_MIPS_ARCH 0xf0000000 /* These constants define the different elf file types */ #define ET_NONE 0 |