1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Add missing relocation types.

Patch by Jack Carter and Reed Kotler at Mips. 

llvm-svn: 141936
This commit is contained in:
Akira Hatanaka 2011-10-14 02:47:50 +00:00
parent 32fd6013f5
commit 9922f8d014

View File

@ -53,7 +53,9 @@ namespace llvm {
reloc_mips_gottprel = 22, // R_MIPS_TLS_GOTTPREL
reloc_mips_tprel_hi = 23, // R_MIPS_TLS_TPREL_HI16
reloc_mips_tprel_lo = 24, // R_MIPS_TLS_TPREL_LO16
reloc_mips_branch_pcrel = 25 // This should become R_MIPS_PC16
reloc_mips_branch_pcrel = 25, // This should become R_MIPS_PC16
reloc_mips_pcrel = 26, // R_MIPS_PC16
reloc_mips_j_jal = 27 // R_MIPS_26
};
}
}