[PATCH] D25563: [ELF/AMDGPU]: Add support for new relocations

Konstantin Zhuravlyov via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 13 22:02:40 PDT 2016


kzhuravl added inline comments.


================
Comment at: ELF/Target.cpp:1489
+  case R_AMDGPU_REL32_HI:
+    write32le(Loc, (Val >> 32) & 0xFFFFFFFF);
+    break;
----------------
ruiu wrote:
> This is the same as
> 
>   write32le(Loc, Val >> 32);
Thanks, fixed this before committing. 


Repository:
  rL LLVM

https://reviews.llvm.org/D25563





More information about the llvm-commits mailing list