IVGCVSW-3540 Fixed PReLU Being Skipped

 * PReLU layers were being skipped due to logic error.

Signed-off-by: Mike Kelly <mike.kelly@arm.com>
Change-Id: Ic0ec707da784b44d72958dee02901b0173b25e5c
diff --git a/ConversionUtils.hpp b/ConversionUtils.hpp
index 759514d..0c00a16 100644
--- a/ConversionUtils.hpp
+++ b/ConversionUtils.hpp
@@ -1035,7 +1035,7 @@
                                                data.m_Backends,
                                                isSupported,
                                                tensorPin.GetConstTensor().GetInfo());
-                    if (isSupported)
+                    if (!isSupported)
                     {
                         return LayerInputHandle();
                     }