diff options
author | Aiden Grossman <agrossman154@yahoo.com> | 2023-03-09 17:20:18 +0000 |
---|---|---|
committer | Aiden Grossman <agrossman154@yahoo.com> | 2023-03-09 17:21:07 +0000 |
commit | 061023e45062292cc700dbd83ebcd9b720a2a220 (patch) | |
tree | faf9556b9be2e5ae9a4b3bfd586c65691e26aff7 /llvm/lib/Object/ELF.cpp | |
parent | acecf68c8b7c3c625cfa00f00f8ddc8f15baae44 (diff) | |
download | llvm-061023e45062292cc700dbd83ebcd9b720a2a220.zip llvm-061023e45062292cc700dbd83ebcd9b720a2a220.tar.gz llvm-061023e45062292cc700dbd83ebcd9b720a2a220.tar.bz2 |
[ELF] Fix build after getSectionAndRelocations Refactoring
Didn't fail locally for some reason with my gcc toolchain.
Diffstat (limited to 'llvm/lib/Object/ELF.cpp')
-rw-r--r-- | llvm/lib/Object/ELF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/ELF.cpp b/llvm/lib/Object/ELF.cpp index aaa2abf..46e1b13 100644 --- a/llvm/lib/Object/ELF.cpp +++ b/llvm/lib/Object/ELF.cpp @@ -746,7 +746,7 @@ ELFFile<ELFT>::getSectionAndRelocations( SecToRelocMap[ContentsSec] = &Sec; } if(Errors) - return Errors; + return std::move(Errors); return SecToRelocMap; } |