We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abfb340 commit 0593b95Copy full SHA for 0593b95
clang/lib/CodeGen/CGOpenMPRuntime.cpp
@@ -11674,9 +11674,7 @@ CGOpenMPRuntime::LastprivateConditionalRAII::~LastprivateConditionalRAII() {
11674
Address CGOpenMPRuntime::emitLastprivateConditionalInit(CodeGenFunction &CGF,
11675
const VarDecl *VD) {
11676
ASTContext &C = CGM.getContext();
11677
- auto I = LastprivateConditionalToTypes.find(CGF.CurFn);
11678
- if (I == LastprivateConditionalToTypes.end())
11679
- I = LastprivateConditionalToTypes.try_emplace(CGF.CurFn).first;
+ auto I = LastprivateConditionalToTypes.try_emplace(CGF.CurFn).first;
11680
QualType NewType;
11681
const FieldDecl *VDField;
11682
const FieldDecl *FiredField;
0 commit comments