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/Utility | |
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/Utility')
-rw-r--r-- | lldb/source/Utility/VMRange.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Utility/VMRange.cpp b/lldb/source/Utility/VMRange.cpp index e7c6b0bcccb..c8c3334138d 100644 --- a/lldb/source/Utility/VMRange.cpp +++ b/lldb/source/Utility/VMRange.cpp @@ -35,9 +35,10 @@ bool VMRange::ContainsRange(const VMRange::collection &coll, }) != coll.end(); } -void VMRange::Dump(Stream *s, lldb::addr_t offset, uint32_t addr_width) const { - DumpAddressRange(s->AsRawOstream(), offset + GetBaseAddress(), - offset + GetEndAddress(), addr_width); +void VMRange::Dump(llvm::raw_ostream &s, lldb::addr_t offset, + uint32_t addr_width) const { + DumpAddressRange(s, offset + GetBaseAddress(), offset + GetEndAddress(), + addr_width); } bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) { |