diff --git a/projects/clr/rocclr/device/device.hpp b/projects/clr/rocclr/device/device.hpp index c93fe5016b..87fd7af76a 100644 --- a/projects/clr/rocclr/device/device.hpp +++ b/projects/clr/rocclr/device/device.hpp @@ -1928,7 +1928,6 @@ class Device : public RuntimeObject { //! Returns value for LinkAttribute for lost of vectors virtual bool findLinkInfo(const amd::Device& other_device, std::vector* link_attr) { - ShouldNotReachHere(); return false; } diff --git a/projects/clr/rocclr/device/pal/paldevice.hpp b/projects/clr/rocclr/device/pal/paldevice.hpp index 04ec9ef602..aaae295fea 100644 --- a/projects/clr/rocclr/device/pal/paldevice.hpp +++ b/projects/clr/rocclr/device/pal/paldevice.hpp @@ -617,8 +617,8 @@ class Device : public NullDevice { virtual bool findLinkInfo(const amd::Device& other_device, std::vector* link_attr) { - // Not implemented in PAL yet - ShouldNotReachHere(); + // Unsupported in PAL + LogPrintfError("The function is unsupported on Windows"); return false; }