[ELF] - Removed excessive reference from pointer arguments. NFC.

llvm-svn: 273155
This commit is contained in:
George Rimar 2016-06-20 13:30:37 +00:00
parent 086fcae95e
commit d5d544757e
1 changed files with 1 additions and 2 deletions

View File

@ -1268,8 +1268,7 @@ static uint16_t getELFType() {
// to each section. This function fixes some predefined absolute
// symbol values that depend on section address and size.
template <class ELFT> void Writer<ELFT>::fixAbsoluteSymbols() {
auto Set = [](DefinedRegular<ELFT> *&S1, DefinedRegular<ELFT> *&S2,
uintX_t V) {
auto Set = [](DefinedRegular<ELFT> *S1, DefinedRegular<ELFT> *S2, uintX_t V) {
if (S1)
S1->Value = V;
if (S2)