From d944e2c3da4fe620bd033669bcdf658ffeee00ba Mon Sep 17 00:00:00 2001 From: foreman Date: Wed, 25 Sep 2019 10:40:51 -0400 Subject: [PATCH] P4 to Git Change 2003907 by kjayapra@0_HIPWS_LNX1_ROCM on 2019/09/25 10:27:19 SWDEV-144570 - Fixing compilation error - changing intermediate enum var as int. Affected files ... ... //depot/stg/opencl/drivers/opencl/runtime/device/devprogram.hpp#32 edit [ROCm/clr commit: 8c489a3680e44c2d26824ae87cee84122b083134] --- projects/clr/rocclr/runtime/device/devprogram.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/rocclr/runtime/device/devprogram.hpp b/projects/clr/rocclr/runtime/device/devprogram.hpp index 701fd22fd2..a597f97379 100644 --- a/projects/clr/rocclr/runtime/device/devprogram.hpp +++ b/projects/clr/rocclr/runtime/device/devprogram.hpp @@ -63,7 +63,7 @@ class ClBinary; class Kernel; struct SymbolInfo { - size_t sym_type; + int sym_type; std::vector* var_names; };