mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Support @PLT loads on 32bit x86.
llvm-svn: 226182
This commit is contained in:
parent
55264a56e6
commit
76e84ed36b
@ -222,6 +222,9 @@ unsigned X86ELFObjectWriter::GetRelocType(const MCValue &Target,
|
||||
case MCSymbolRefExpr::VK_GOT:
|
||||
Type = ELF::R_386_GOT32;
|
||||
break;
|
||||
case MCSymbolRefExpr::VK_PLT:
|
||||
Type = ELF::R_386_PLT32;
|
||||
break;
|
||||
case MCSymbolRefExpr::VK_GOTOFF:
|
||||
Type = ELF::R_386_GOTOFF;
|
||||
break;
|
||||
|
@ -63,6 +63,8 @@
|
||||
// Relocation 28 (und_symbol-bar2) is of type R_386_PC8
|
||||
// CHECK-NEXT: 0xA0 R_386_PC8 und_symbol 0x0
|
||||
// CHECK-NEXT: 0xA3 R_386_GOTOFF und_symbol 0x0
|
||||
// Relocation 29 (zed@PLT) is of type R_386_PLT32 and uses the symbol
|
||||
// CHECK-NEXT: 0xA9 R_386_PLT32 zed 0x0
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
|
||||
@ -129,6 +131,7 @@ bar2:
|
||||
.byte und_symbol-bar2
|
||||
|
||||
leal 1 + und_symbol@GOTOFF, %edi
|
||||
movl zed@PLT(%eax), %eax
|
||||
|
||||
.section zedsec,"awT",@progbits
|
||||
zed:
|
||||
|
Loading…
Reference in New Issue
Block a user