Skip to content

Commit e3bc772

Browse files
committed
Run GCF
1 parent 2214e6c commit e3bc772

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/Plugins/Process/minidump/MinidumpParser.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ llvm::ArrayRef<uint8_t> MinidumpParser::GetStream(StreamType stream_type) {
4949
return m_file->getRawStream(stream_type).value_or(llvm::ArrayRef<uint8_t>());
5050
}
5151

52-
std::optional<llvm::ArrayRef<uint8_t>> MinidumpParser::GetRawStream(StreamType stream_type) {
52+
std::optional<llvm::ArrayRef<uint8_t>>
53+
MinidumpParser::GetRawStream(StreamType stream_type) {
5354
return m_file->getRawStream(stream_type);
5455
}
5556

lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,6 @@ bool ProcessMinidump::IsLLDBMinidump() {
360360
return lldb_generated_section.has_value();
361361
}
362362

363-
364363
DynamicLoader *ProcessMinidump::GetDynamicLoader() {
365364
// This is a workaround for the dynamic loader not playing nice in issue
366365
// #119598. The specific reason we use the dynamic loader is to get the TLS

0 commit comments

Comments
 (0)