diff options
| author | Adrian Prantl <aprantl@apple.com> | 2015-09-22 18:50:51 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2015-09-22 18:50:51 +0000 |
| commit | c3021ee2397355937b27b92f5247db04e5e7d67b (patch) | |
| tree | c5b731a1d98b5fc1421e6a7f0a7a44ff980c8a63 /llvm/tools | |
| parent | 56465abe139c39bd38d22f90b1bec22e3715713a (diff) | |
| download | bcm5719-llvm-c3021ee2397355937b27b92f5247db04e5e7d67b.tar.gz bcm5719-llvm-c3021ee2397355937b27b92f5247db04e5e7d67b.zip | |
dsymutil: Make DwarfLinker::reportWarning() public. (NFC)
llvm-svn: 248310
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/dsymutil/DwarfLinker.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/dsymutil/DwarfLinker.cpp b/llvm/tools/dsymutil/DwarfLinker.cpp index f3217f9b227..f74486ef75b 100644 --- a/llvm/tools/dsymutil/DwarfLinker.cpp +++ b/llvm/tools/dsymutil/DwarfLinker.cpp @@ -1096,6 +1096,9 @@ public: /// \brief Link the contents of the DebugMap. bool link(const DebugMap &); + void reportWarning(const Twine &Warning, const DWARFUnit *Unit = nullptr, + const DWARFDebugInfoEntryMinimal *DIE = nullptr) const; + private: /// \brief Called at the start of a debug object link. void startDebugObject(DWARFContext &, DebugMapObject &); @@ -1379,9 +1382,6 @@ private: CompileUnit *getUnitForOffset(unsigned Offset); - void reportWarning(const Twine &Warning, const DWARFUnit *Unit = nullptr, - const DWARFDebugInfoEntryMinimal *DIE = nullptr) const; - bool createStreamer(Triple TheTriple, StringRef OutputFilename); /// \brief Attempt to load a debug object from disk. |

