changeset 16540:a18c229b9a0b

HSAIL: fix performance warning (treated as error on windows!) due to jint=>bool conversion (in line 197)
author Christian Wirth <christian.wirth@oracle.com>
date Thu, 17 Jul 2014 11:00:19 +0200
parents cc30bd72a19b
children 62773598c55d
files src/gpu/hsail/vm/gpu_hsail.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gpu/hsail/vm/gpu_hsail.cpp	Wed Jul 16 23:37:10 2014 +0200
+++ b/src/gpu/hsail/vm/gpu_hsail.cpp	Thu Jul 17 11:00:19 2014 +0200
@@ -185,7 +185,7 @@
   }
 
   // Run the kernel
-  bool success = false;
+  jboolean success = false;
   {
     TraceTime t("execute kernel", TraceGPUInteraction);
     graal_okra_range_t kernel_range = {0};