[clang] [CodeGen] Replace of PointerType::get(Type) with opaque version (NFC) (PR #124771)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 7 08:49:05 PST 2025
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 27598aba49a7bbb6751fff5c8dc455edf701e1aa 9a21d425bf6888e530f5054bc980e41757791cde --extensions cpp,h -- clang/lib/CodeGen/Address.h clang/lib/CodeGen/CGBlocks.cpp clang/lib/CodeGen/CGDecl.cpp clang/lib/CodeGen/CGDeclCXX.cpp clang/lib/CodeGen/CGExpr.cpp clang/lib/CodeGen/CGObjCMac.cpp clang/lib/CodeGen/CodeGenModule.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp
index 80a849fd52..668282a6ab 100644
--- a/clang/lib/CodeGen/CGDecl.cpp
+++ b/clang/lib/CodeGen/CGDecl.cpp
@@ -2888,8 +2888,7 @@ void CodeGenModule::EmitOMPAllocateDecl(const OMPAllocateDecl *D) {
Entry->mutateType(PTy);
llvm::Constant *NewPtrForOldDecl =
- llvm::ConstantExpr::getAddrSpaceCast(
- Entry, DummyGV->getType());
+ llvm::ConstantExpr::getAddrSpaceCast(Entry, DummyGV->getType());
// Now we have a casted version of the changed global, the dummy can be
// replaced and deleted.
``````````
</details>
https://github.com/llvm/llvm-project/pull/124771
More information about the cfe-commits
mailing list