[llvm] d4100f0 - Fix test bot breakage from 36f351098cd50809658493d9b2e22a795874bab0

Alexey Lapshin via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 4 15:08:25 PDT 2023


Author: Alexey Lapshin
Date: 2023-06-05T00:04:53+02:00
New Revision: d4100f07da0526478a2b47242710f8a3f8d5e6a9

URL: https://github.com/llvm/llvm-project/commit/d4100f07da0526478a2b47242710f8a3f8d5e6a9
DIFF: https://github.com/llvm/llvm-project/commit/d4100f07da0526478a2b47242710f8a3f8d5e6a9.diff

LOG: Fix test bot breakage from 36f351098cd50809658493d9b2e22a795874bab0

This addresses the issue found by: https://lab.llvm.org/buildbot/#/builders/192/builds/2309

Added: 
    

Modified: 
    llvm/tools/dsymutil/DwarfLinkerForBinary.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/dsymutil/DwarfLinkerForBinary.cpp b/llvm/tools/dsymutil/DwarfLinkerForBinary.cpp
index 5331eabf89a16..9841890d37c81 100644
--- a/llvm/tools/dsymutil/DwarfLinkerForBinary.cpp
+++ b/llvm/tools/dsymutil/DwarfLinkerForBinary.cpp
@@ -244,7 +244,7 @@ DwarfLinkerForBinary::loadObject(const DebugMapObject &Obj,
             }))
       return errorToErrorCode(std::move(NewE));
 
-    return Res;
+    return std::move(Res);
   }
 
   return ErrorOrObj.getError();


        


More information about the llvm-commits mailing list