[llvm] [llvm-objdump] Add support for HIP offload bundles (PR #114834)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 12:07:21 PST 2025
================
@@ -48,7 +51,7 @@ static void printBinary(const OffloadBinary &OB, uint64_t Index) {
}
/// Print the embedded offloading contents of an ObjectFile \p O.
-void llvm::dumpOffloadBinary(const ObjectFile &O) {
+void llvm::dumpOffloadBinary(const ObjectFile &O, std::string ArchName) {
----------------
jhuber6 wrote:
```suggestion
void llvm::dumpOffloadBinary(const ObjectFile &O, StringRef ArchName) {
```
Unless we really need to have ownership of this string.
https://github.com/llvm/llvm-project/pull/114834
More information about the llvm-commits
mailing list