diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2019-12-06 09:53:44 +0100 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-06 10:19:20 +0100 |
| commit | 777d1f7272b52cbe372e7234a7247b189e416062 (patch) | |
| tree | 84c0126ef89c2e3759b8fc9164ef8c70991a1772 /lldb/source/Core | |
| parent | 0d2472ff6f604af842059d9a0098db274515a2d3 (diff) | |
| download | bcm5719-llvm-777d1f7272b52cbe372e7234a7247b189e416062.tar.gz bcm5719-llvm-777d1f7272b52cbe372e7234a7247b189e416062.zip | |
[lldb] Migrate VMRange::Dump to raw_ostream
Diffstat (limited to 'lldb/source/Core')
| -rw-r--r-- | lldb/source/Core/Section.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp index e8fcca4603d..4a9acab2e27 100644 --- a/lldb/source/Core/Section.cpp +++ b/lldb/source/Core/Section.cpp @@ -323,7 +323,7 @@ void Section::Dump(Stream *s, Target *target, uint32_t depth) const { } VMRange range(addr, addr + m_byte_size); - range.Dump(s, 0); + range.Dump(s->AsRawOstream(), 0); } s->Printf("%c %c%c%c 0x%8.8" PRIx64 " 0x%8.8" PRIx64 " 0x%8.8x ", |

