Skip to content

Commit 148e536

Browse files
committed
Fix the valance of the DebuggerSupport test.
I was moving this around per Jordan's request and didn't change the valance of the if test.
1 parent 25c1b05 commit 148e536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/IRGen/IRGenModule.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ void IRGenModule::addLinkLibrary(const LinkLibrary &linkLib) {
10121012
// The debugger gets the autolink information directly from
10131013
// the LinkLibraries of the module, so there's no reason to
10141014
// emit it into the IR of debugger expressions.
1015-
if (!Context.LangOpts.DebuggerSupport)
1015+
if (Context.LangOpts.DebuggerSupport)
10161016
return;
10171017

10181018
switch (linkLib.getKind()) {

0 commit comments

Comments
 (0)