Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ void SwiftLanguageRuntime::SetupReflection() {
return;

LLDB_SCOPED_TIMER();

// The global ABI bit is read by the Swift runtime library.
SetupABIBit();
SetupExclusivity();
Expand Down Expand Up @@ -3287,7 +3287,7 @@ llvm::Expected<uint64_t> FindPrologueSize(Process &process,
eSymbolContextSymbol);
if (!sc_ok || (!sc.symbol && !sc.function))
return llvm::createStringError(llvm::formatv(
"Failed to find a symbol context for address {1:x}", load_address));
"Failed to find a symbol context for address {0:x}", load_address));

uint64_t prologue_size = sc.symbol ? sc.symbol->GetPrologueByteSize()
: sc.function->GetPrologueByteSize();
Expand Down