summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBInstruction.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-02-09 01:08:52 +0000
committerGreg Clayton <gclayton@apple.com>2011-02-09 01:08:52 +0000
commit51b1e2d271a4749654c2168aad7b24321bbb2897 (patch)
treeba30fa1dae5d98f59f4b43af59459e9279bb22da /lldb/source/API/SBInstruction.cpp
parent7eaacc517bc312d43d511856f359e7bd68c344f1 (diff)
downloadbcm5719-llvm-51b1e2d271a4749654c2168aad7b24321bbb2897.tar.gz
bcm5719-llvm-51b1e2d271a4749654c2168aad7b24321bbb2897.zip
Use Host::File in lldb_private::StreamFile and other places to cleanup host
layer a bit more. llvm-svn: 125149
Diffstat (limited to 'lldb/source/API/SBInstruction.cpp')
-rw-r--r--lldb/source/API/SBInstruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBInstruction.cpp b/lldb/source/API/SBInstruction.cpp
index 01718a3d844..df3a7535cbb 100644
--- a/lldb/source/API/SBInstruction.cpp
+++ b/lldb/source/API/SBInstruction.cpp
@@ -103,7 +103,7 @@ SBInstruction::Print (FILE *out)
if (m_opaque_sp)
{
- StreamFile out_stream (out);
+ StreamFile out_stream (out, false);
m_opaque_sp->Dump (&out_stream, true, NULL, 0, NULL, false);
}
}
OpenPOWER on IntegriCloud