[clang] [HIP] fix stack marking for -fgpu-rdc (PR #72782)

via cfe-commits cfe-commits at lists.llvm.org
Sat Nov 18 21:33:18 PST 2023


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 5237193b87721134541f228e28edfd544a9c8ac8 adf19a8c09fc4ed82e4b42c735452e8c4ed8d84f -- clang/lib/Driver/ToolChains/HIPUtility.cpp
``````````

</details>

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

``````````diff
diff --git a/clang/lib/Driver/ToolChains/HIPUtility.cpp b/clang/lib/Driver/ToolChains/HIPUtility.cpp
index 671cd060e0..f692458b77 100644
--- a/clang/lib/Driver/ToolChains/HIPUtility.cpp
+++ b/clang/lib/Driver/ToolChains/HIPUtility.cpp
@@ -151,7 +151,7 @@ void HIP::constructGenerateObjFileFromHIPFatBinary(
   llvm::sys::printArg(ObjStream, BundleFile, /*Quote=*/true);
   ObjStream << "\n";
   if (HostTriple.isOSLinux() && HostTriple.isOSBinFormatELF())
-	  ObjStream << "  .section .note.GNU-stack, \"\", @progbits\n";
+    ObjStream << "  .section .note.GNU-stack, \"\", @progbits\n";
   ObjStream.flush();
 
   // Dump the contents of the temp object file gen if the user requested that.

``````````

</details>


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


More information about the cfe-commits mailing list