[PATCH] D13835: [ELF2] - Implemented R_X86_64_PLT32 rellocation.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 16 16:25:36 PDT 2015


ruiu accepted this revision.
ruiu added a comment.
This revision is now accepted and ready to land.

LGTM with a nit.

Please update the test by adding a PLT32 relocation referring a symbol which is resolved within the same file, like this.

  .global _start, foo
  _start:
    jmp bar at PLT
    jmp bar at PLT
    jmp zed at PLT
    jmp foo at PLT
    jmp _start at plt
  foo:


http://reviews.llvm.org/D13835





More information about the llvm-commits mailing list