[Libomptarget] Remove unused image argument from global handler function
authorJoseph Huber <jhuber6@vols.utk.edu>
Fri, 24 Feb 2023 13:23:34 +0000 (07:23 -0600)
committerJoseph Huber <jhuber6@vols.utk.edu>
Fri, 24 Feb 2023 13:24:29 +0000 (07:24 -0600)
Summary:
A previous patch got rid of the use of this image but forgot to remove
it from this function. Simply remove it as it is unused now.

openmp/libomptarget/plugins-nextgen/common/PluginInterface/GlobalHandler.h
openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.cpp

index 51a6f4f..b51ed3c 100644 (file)
@@ -158,8 +158,7 @@ public:
   /// Copy the memory associated with a global from the host to its counterpart
   /// on the device. The name, size, and origin are defined by \p HostGlobal.
   /// The destination is defined by \p DeviceGlobal.
-  Error writeGlobalToDevice(GenericDeviceTy &Device, DeviceImageTy &Image,
-                            const GlobalTy &HostGlobal,
+  Error writeGlobalToDevice(GenericDeviceTy &Device, const GlobalTy &HostGlobal,
                             const GlobalTy &DeviceGlobal) {
     return moveGlobalBetweenDeviceAndHost(Device, HostGlobal, DeviceGlobal,
                                           /* D2H */ false);
index 4a18032..43ef2c8 100644 (file)
@@ -518,8 +518,8 @@ Error GenericDeviceTy::registerGlobalOffloadEntry(
     // can access host addresses directly. There is no longer a
     // need for device copies.
     GlobalTy HostGlobal(GlobalEntry);
-    if (auto Err = GHandler.writeGlobalToDevice(*this, Image, HostGlobal,
-                                                DeviceGlobal))
+    if (auto Err =
+            GHandler.writeGlobalToDevice(*this, HostGlobal, DeviceGlobal))
       return Err;
   }