mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Correct unique_ptr passing in MCObjectDisassembler::setFallbackRegion
Rather than passing by lvalue reference, pass by value to ensure that the caller provides an rvalue (and use move assignment, rather than release+reset, to assign to the member variable) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216916 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
251da88db8
commit
7bda613297
@ -66,8 +66,8 @@ public:
|
||||
/// \brief Set the region on which to fallback if disassembly was requested
|
||||
/// somewhere not accessible in the object file.
|
||||
/// This is used for dynamic disassembly (see RawMemoryObject).
|
||||
void setFallbackRegion(std::unique_ptr<MemoryObject> &Region) {
|
||||
FallbackRegion.reset(Region.release());
|
||||
void setFallbackRegion(std::unique_ptr<MemoryObject> Region) {
|
||||
FallbackRegion = std::move(Region);
|
||||
}
|
||||
|
||||
/// \brief Set the symbolizer to use to get information on external functions.
|
||||
|
Loading…
x
Reference in New Issue
Block a user