Skip to content

Commit 857488c

Browse files
authored
Merge pull request #3998 from apple/fix-the-no-swift-build
[lldb] Fix the LLDB_ENABLE_SWIFT_SUPPORT=OFF build
2 parents 652a6fd + 5f35077 commit 857488c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Target/Thread.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,9 +324,9 @@ void Thread::FrameSelectedCallback(StackFrame *frame) {
324324
(GetProcess()->GetWarningsOptimization() ||
325325
GetProcess()->GetWarningsUnsupportedLanguage()
326326
#ifdef LLDB_ENABLE_SWIFT
327-
|| GetProcess()->GetWarningsToolchainMismatch())
327+
|| GetProcess()->GetWarningsToolchainMismatch()
328328
#endif
329-
) {
329+
)) {
330330
SymbolContext sc =
331331
frame->GetSymbolContext(eSymbolContextFunction | eSymbolContextModule);
332332
GetProcess()->PrintWarningOptimization(sc);

0 commit comments

Comments
 (0)