[clang] [Win32][ELF] Make CodeView a DebugInfoFormat only for COFF format (PR #87149)

via cfe-commits cfe-commits at lists.llvm.org
Sat Mar 30 02:38:38 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 070d7af0c56b993806fa47f77b607b1849a2172f 745b2acb9dafbb54b00353f71dee464b3617c13a -- clang/test/Misc/win32-elf.c clang/lib/Driver/ToolChains/MSVC.h
``````````

</details>

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

``````````diff
diff --git a/clang/lib/Driver/ToolChains/MSVC.h b/clang/lib/Driver/ToolChains/MSVC.h
index 3a5975272c..3950a8ed38 100644
--- a/clang/lib/Driver/ToolChains/MSVC.h
+++ b/clang/lib/Driver/ToolChains/MSVC.h
@@ -61,9 +61,8 @@ public:
   /// formats, and to DWARF otherwise. Users can use -gcodeview and -gdwarf to
   /// override the default.
   llvm::codegenoptions::DebugInfoFormat getDefaultDebugFormat() const override {
-    return getTriple().isOSBinFormatCOFF()
-               ? llvm::codegenoptions::DIF_CodeView
-               : llvm::codegenoptions::DIF_DWARF;
+    return getTriple().isOSBinFormatCOFF() ? llvm::codegenoptions::DIF_CodeView
+                                           : llvm::codegenoptions::DIF_DWARF;
   }
 
   /// Set the debugger tuning to "default", since we're definitely not tuning

``````````

</details>


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


More information about the cfe-commits mailing list