We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c1804 commit 998cdaeCopy full SHA for 998cdae
llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
@@ -764,7 +764,7 @@ class HexagonMCInstrAnalysis : public MCInstrAnalysis {
764
uint32_t Address = (getValueFromMask(ImmExt, 0xfff3fff) << 6) +
765
getValueFromMask(LoadGotPlt, 0x1f80) + PltSectionVA +
766
Byte;
767
- Result.push_back(std::make_pair(PltSectionVA + Byte, Address));
+ Result.emplace_back(PltSectionVA + Byte, Address);
768
}
769
return Result;
770
0 commit comments