From 7304702ef99f98897d15baae0eede55f294bc602 Mon Sep 17 00:00:00 2001 From: Jack Carter Date: Tue, 5 Feb 2013 09:30:03 +0000 Subject: This patch that sets the Mips ELF header flag for MicroMips architectures. Contributer: Zoran Jovanovic git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174360 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/ELF.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/llvm/Support') diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h index a1b8f54..2c831a6 100644 --- a/include/llvm/Support/ELF.h +++ b/include/llvm/Support/ELF.h @@ -747,7 +747,8 @@ enum { EF_MIPS_ARCH_64 = 0x60000000, // MIPS64 instruction set per linux not elf.h EF_MIPS_ARCH_32R2 = 0x70000000, // mips32r2 EF_MIPS_ARCH_64R2 = 0x80000000, // mips64r2 - EF_MIPS_ARCH = 0xf0000000 // Mask for applying EF_MIPS_ARCH_ variant + EF_MIPS_ARCH = 0xf0000000, // Mask for applying EF_MIPS_ARCH_ variant + EF_MIPS_MICROMIPS = 0x02000000 // microMIPS }; // ELF Relocation types for Mips -- cgit v1.1