Skip to content

Commit b9adc66

Browse files
committed
[TSAR, Parallel] Fix, trivial, compile-time error.
1 parent ba957d7 commit b9adc66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Transform/Clang/SharedMemoryAutoPar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ bool ClangSMParallelization::findParallelLoops(
144144
continue;
145145
auto Info = mParallelCallees.try_emplace(Callee);
146146
if (Info.second)
147-
Info.first->second = mCGNodes[Callee];
147+
Info.first->getSecond() = mCGNodes[Callee];
148148
}
149149
return true;
150150
}

0 commit comments

Comments
 (0)