aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectTarget.cpp
diff options
context:
space:
mode:
authorArthur Eubanks <aeubanks@google.com>2022-10-12 16:18:44 -0700
committerArthur Eubanks <aeubanks@google.com>2022-10-17 14:24:21 -0700
commit569be95a40893041f8cadf2907a5970a19b1155f (patch)
tree9ce1ad367b5ac462edfd39ca75caa8da5a0bd4d3 /lldb/source/Commands/CommandObjectTarget.cpp
parent4abc910a42e50d278f64558acc20b346bf3013f4 (diff)
downloadllvm-569be95a40893041f8cadf2907a5970a19b1155f.zip
llvm-569be95a40893041f8cadf2907a5970a19b1155f.tar.gz
llvm-569be95a40893041f8cadf2907a5970a19b1155f.tar.bz2
[lldb] Print newline between found types
Or else multiple entries end up overlapping on the same line. Reviewed By: DavidSpickett Differential Revision: https://reviews.llvm.org/D135827
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectTarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp
index 59b7dfd..61ac468 100644
--- a/lldb/source/Commands/CommandObjectTarget.cpp
+++ b/lldb/source/Commands/CommandObjectTarget.cpp
@@ -1663,8 +1663,8 @@ static size_t LookupTypeInModule(Target *target,
typedef_type_sp = typedefed_type_sp;
typedefed_type_sp = typedef_type_sp->GetTypedefType();
}
+ strm.EOL();
}
- strm.EOL();
}
return type_list.GetSize();
}