[clang] [clang][Sema] Fix ObjC file-scope literal diagnostic under -fobjc-arc (PR #209688)

via cfe-commits cfe-commits at lists.llvm.org
Tue Jul 14 23:56:51 PDT 2026


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 origin/main HEAD --extensions cpp -- clang/lib/Sema/SemaDecl.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index 5dbc5b653..885083c8b 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -12919,7 +12919,7 @@ bool Sema::CheckForConstantInitializer(Expr *Init, unsigned DiagID) {
 
   // Under ARC, the initializer is wrapped in `ExprWithCleanups` +
   // `ImplicitCastExpr <ARCReclaimReturnedObject>`. Unwrap both
-  // here so the ObjC-specific path fires under ARC too. 
+  // here so the ObjC-specific path fires under ARC too.
   Init = Init->IgnoreImpCasts();
   if (auto *EWC = dyn_cast<ExprWithCleanups>(Init))
     Init = EWC->getSubExpr()->IgnoreImpCasts();

``````````

</details>


https://github.com/llvm/llvm-project/pull/209688


More information about the cfe-commits mailing list