mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Add relocations used for mips big GOT.
llvm-svn: 168448
This commit is contained in:
parent
f98e42b853
commit
89ebdb5e78
@ -197,7 +197,11 @@ public:
|
||||
VK_Mips_GOT_PAGE,
|
||||
VK_Mips_GOT_OFST,
|
||||
VK_Mips_HIGHER,
|
||||
VK_Mips_HIGHEST
|
||||
VK_Mips_HIGHEST,
|
||||
VK_Mips_GOT_HI16,
|
||||
VK_Mips_GOT_LO16,
|
||||
VK_Mips_CALL_HI16,
|
||||
VK_Mips_CALL_LO16
|
||||
};
|
||||
|
||||
private:
|
||||
|
@ -229,6 +229,10 @@ StringRef MCSymbolRefExpr::getVariantKindName(VariantKind Kind) {
|
||||
case VK_Mips_GOT_OFST: return "GOT_OFST";
|
||||
case VK_Mips_HIGHER: return "HIGHER";
|
||||
case VK_Mips_HIGHEST: return "HIGHEST";
|
||||
case VK_Mips_GOT_HI16: return "GOT_HI16";
|
||||
case VK_Mips_GOT_LO16: return "GOT_LO16";
|
||||
case VK_Mips_CALL_HI16: return "CALL_HI16";
|
||||
case VK_Mips_CALL_LO16: return "CALL_LO16";
|
||||
}
|
||||
llvm_unreachable("Invalid variant kind");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user