Skip to content

Commit 352471c

Browse files
authored
elf: add MIPSr6 elf e_flag const support (#372)
1 parent 9fd1ed0 commit 352471c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/elf.rs

+4
Original file line numberDiff line numberDiff line change
@@ -2391,6 +2391,10 @@ pub const EF_MIPS_ARCH_64: u32 = 0x6000_0000;
23912391
pub const EF_MIPS_ARCH_32R2: u32 = 0x7000_0000;
23922392
/// MIPS64r2 code.
23932393
pub const EF_MIPS_ARCH_64R2: u32 = 0x8000_0000;
2394+
/// MIPS32r6 code
2395+
pub const EF_MIPS_ARCH_32R6: u32 = 0x9000_0000;
2396+
/// MIPS64r6 code
2397+
pub const EF_MIPS_ARCH_64R6: u32 = 0xa000_0000;
23942398

23952399
// MIPS values for `Sym32::st_shndx`.
23962400

0 commit comments

Comments
 (0)