[PATCH] D50657: Add R_HEX_32 relocation support
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 19 23:20:09 PDT 2018
ruiu added inline comments.
================
Comment at: lld/trunk/ELF/Arch/Hexagon.cpp:132
+ case R_HEX_32:
+ or32le(Loc, applyMask(0xffffffff, Val));
+ break;
----------------
`applyMask(0xffffffff, ...)` seems to be a no-op. Can you just use `Val`?
Repository:
rL LLVM
https://reviews.llvm.org/D50657
More information about the llvm-commits
mailing list