diff options
Diffstat (limited to 'lldb/source/Target/Platform.cpp')
-rw-r--r-- | lldb/source/Target/Platform.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/source/Target/Platform.cpp b/lldb/source/Target/Platform.cpp index e43cdc63646..33446a9fb3a 100644 --- a/lldb/source/Target/Platform.cpp +++ b/lldb/source/Target/Platform.cpp @@ -475,7 +475,11 @@ Platform::GetStatus (Stream &strm) if (arch.IsValid()) { if (!arch.GetTriple().str().empty()) - strm.Printf(" Triple: %s\n", arch.GetTriple().str().c_str()); + { + strm.Printf(" Triple: "); + arch.DumpTriple(strm); + strm.EOL(); + } } if (GetOSVersion(major, minor, update)) |