[PATCH] D30628: [ELF] Handle NONE relocations on AArch64

Petr Hosek via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 5 17:28:45 PST 2017


phosek created this revision.
phosek added a project: lld.
Herald added subscribers: rengolin, aemerson.

Repository:
  rL LLVM

https://reviews.llvm.org/D30628

Files:
  ELF/Target.cpp


Index: ELF/Target.cpp
===================================================================
--- ELF/Target.cpp
+++ ELF/Target.cpp
@@ -1320,6 +1320,8 @@
   case R_AARCH64_ADR_GOT_PAGE:
   case R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
     return R_GOT_PAGE_PC;
+  case R_AARCH64_NONE:
+    return R_NONE;
   }
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D30628.90633.patch
Type: text/x-patch
Size: 308 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170306/b50d9208/attachment.bin>


More information about the llvm-commits mailing list