mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
[dsymutil] Fix missing member initializer.
This bug was found by the MSan bootstrap bot: http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap/builds/5330/steps/check-llvm%20msan/logs/stdio git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
657f8c831a
commit
11bc075321
@ -21,7 +21,8 @@ using namespace llvm::object;
|
|||||||
class MachODebugMapParser {
|
class MachODebugMapParser {
|
||||||
public:
|
public:
|
||||||
MachODebugMapParser(StringRef BinaryPath, StringRef PathPrefix = "")
|
MachODebugMapParser(StringRef BinaryPath, StringRef PathPrefix = "")
|
||||||
: BinaryPath(BinaryPath), PathPrefix(PathPrefix) {}
|
: BinaryPath(BinaryPath), PathPrefix(PathPrefix),
|
||||||
|
CurrentDebugMapObject(nullptr) {}
|
||||||
|
|
||||||
/// \brief Parses and returns the DebugMap of the input binary.
|
/// \brief Parses and returns the DebugMap of the input binary.
|
||||||
/// \returns an error in case the provided BinaryPath doesn't exist
|
/// \returns an error in case the provided BinaryPath doesn't exist
|
||||||
|
Loading…
Reference in New Issue
Block a user