[clang] [clang-repl] Implement IncrementalHIPDeviceParser for HIP device compilation (PR #218337)

via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 9 03:49:59 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,h -- clang/include/clang/CodeGen/CodeGenAction.h clang/lib/CodeGen/BackendConsumer.h clang/lib/CodeGen/CodeGenAction.cpp clang/lib/Interpreter/DeviceOffload.cpp clang/lib/Interpreter/DeviceOffload.h --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/Interpreter/DeviceOffload.cpp b/clang/lib/Interpreter/DeviceOffload.cpp
index 06fd76ba7..f2346ccee 100644
--- a/clang/lib/Interpreter/DeviceOffload.cpp
+++ b/clang/lib/Interpreter/DeviceOffload.cpp
@@ -93,10 +93,10 @@ llvm::Expected<llvm::StringRef> IncrementalHIPDeviceParser::GenerateHSACO() {
 
   llvm::SmallVector<char, 0> Object;
   auto ObjOS = std::make_unique<llvm::raw_svector_ostream>(Object);
-  clang::emitBackendOutput(DeviceCI, DeviceCI.getCodeGenOpts(),
-                           DeviceCI.getTarget().getDataLayoutString(),
-                           PTU.TheModule.get(), Backend_EmitObj,
-                           DeviceCI.getVirtualFileSystemPtr(), std::move(ObjOS));
+  clang::emitBackendOutput(
+      DeviceCI, DeviceCI.getCodeGenOpts(),
+      DeviceCI.getTarget().getDataLayoutString(), PTU.TheModule.get(),
+      Backend_EmitObj, DeviceCI.getVirtualFileSystemPtr(), std::move(ObjOS));
 
   std::string Exe = llvm::sys::fs::getMainExecutable(nullptr, nullptr);
   llvm::StringRef ExeDir = llvm::sys::path::parent_path(Exe);

``````````

</details>


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


More information about the cfe-commits mailing list