Skip to content

Commit

Permalink
Try to unbreak buildbots after r368014
Browse files Browse the repository at this point in the history
llvm-svn: 368018
  • Loading branch information
igorkudrin committed Aug 6, 2019
1 parent c6735ae commit 2836cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ DWARFDebugNames::NameIndex::getEntry(uint32_t *Offset) const {
uint64_t Offset64 = *Offset;
auto Result = getEntry(&Offset64);
*Offset = Offset64;
return std::move(Result);
return Result;
}

DWARFDebugNames::NameTableEntry
Expand Down

0 comments on commit 2836cf0

Please sign in to comment.