[clang] [clang][Driver][Darwin] Turn on -gsimple-template-names for Darwin by default (PR #182297)

via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 19 07:09:17 PST 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 h,c,cpp -- clang/include/clang/Driver/ToolChain.h clang/lib/Driver/ToolChains/Clang.cpp clang/lib/Driver/ToolChains/Darwin.cpp clang/lib/Driver/ToolChains/Darwin.h clang/test/DebugInfo/CXX/fn-template.cpp clang/test/Driver/debug-options.c --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/Driver/ToolChains/Darwin.cpp b/clang/lib/Driver/ToolChains/Darwin.cpp
index 70df4d724..8c801c2af 100644
--- a/clang/lib/Driver/ToolChains/Darwin.cpp
+++ b/clang/lib/Driver/ToolChains/Darwin.cpp
@@ -1369,8 +1369,8 @@ unsigned DarwinClang::GetDefaultDwarfVersion() const {
 }
 
 bool DarwinClang::getDefaultDebugSimpleTemplateNames() const override {
-  // Default to an OS version on which LLDB supports debugging -gsimple-template-names
-  // programs.
+  // Default to an OS version on which LLDB supports debugging
+  // -gsimple-template-names programs.
   if ((isTargetMacOSBased() && isMacosxVersionLT(26)) ||
       (isTargetIOSBased() && isIPhoneOSVersionLT(26)) ||
       (isTargetWatchOSBased() && TargetVersion < llvm::VersionTuple(26)) ||

``````````

</details>


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


More information about the cfe-commits mailing list