[llvm] [Offload][NFC] Factor out and rename the `__tgt_offload_entry` struct (PR #123785)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 21 09:37:06 PST 2025
================
@@ -21,6 +21,16 @@
namespace llvm {
namespace offloading {
+/// This is the record of an object that just be registered with the offloading
+/// runtime.
+struct EntryTy {
+ void *Address;
+ char *Symbol;
----------------
jhuber6 wrote:
It corresponds to a symbol so I figured it was more descriptive, an add a name if that makes it clearer.
https://github.com/llvm/llvm-project/pull/123785
More information about the llvm-commits
mailing list