[Lldb-commits] [lldb] cfe5d76 - Fix buildbot after https://reviews.llvm.org/D115073.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 7 12:04:07 PST 2021


Author: Greg Clayton
Date: 2021-12-07T12:03:45-08:00
New Revision: cfe5d768be95ae0a62cf430e56e7762cebf81a65

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

LOG: Fix buildbot after https://reviews.llvm.org/D115073.

Added: 
    

Modified: 
    lldb/unittests/Process/POSIX/NativeProcessELFTest.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/unittests/Process/POSIX/NativeProcessELFTest.cpp b/lldb/unittests/Process/POSIX/NativeProcessELFTest.cpp
index 36f91e1163787..ff7b4220f5991 100644
--- a/lldb/unittests/Process/POSIX/NativeProcessELFTest.cpp
+++ b/lldb/unittests/Process/POSIX/NativeProcessELFTest.cpp
@@ -39,7 +39,7 @@ std::unique_ptr<llvm::MemoryBuffer> CreateAuxvData(
     encoder.AppendAddress(pair.second);
   }
   return llvm::MemoryBuffer::getMemBufferCopy(
-      llvm::toStringRef(buffer_sp->GetData()), "");
+      llvm::toStringRef(encoder.GetData()), "");
 }
 
 } // namespace


        


More information about the lldb-commits mailing list