[clang] [CGOpenMPRuntime] Use DenseMap::operator[] (NFC) (PR #107185)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 3 23:02:10 PDT 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 3449ed8dece600f387357b71ff74ae4bc46828b6 24088d0b17e610039191537abfb196732a5e3218 --extensions cpp -- clang/lib/CodeGen/CGOpenMPRuntime.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
index 2c5e2a0a16..3d392d869e 100644
--- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp
+++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
@@ -1332,11 +1332,10 @@ void CGOpenMPRuntime::setLocThreadIdInsertPt(CodeGenFunction &CGF,
llvm::Value *Undef = llvm::UndefValue::get(CGF.Int32Ty);
if (AtCurrentPoint) {
- Elem.ServiceInsertPt = new llvm::BitCastInst(
- Undef, CGF.Int32Ty, "svcpt", CGF.Builder.GetInsertBlock());
+ Elem.ServiceInsertPt = new llvm::BitCastInst(Undef, CGF.Int32Ty, "svcpt",
+ CGF.Builder.GetInsertBlock());
} else {
- Elem.ServiceInsertPt =
- new llvm::BitCastInst(Undef, CGF.Int32Ty, "svcpt");
+ Elem.ServiceInsertPt = new llvm::BitCastInst(Undef, CGF.Int32Ty, "svcpt");
Elem.ServiceInsertPt->insertAfter(CGF.AllocaInsertPt);
}
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/107185
More information about the cfe-commits
mailing list