diff options
Diffstat (limited to 'ptx/src/test/spirv_run/rem.spvtxt')
-rw-r--r-- | ptx/src/test/spirv_run/rem.spvtxt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ptx/src/test/spirv_run/rem.spvtxt b/ptx/src/test/spirv_run/rem.spvtxt index ce1d3e6..2184523 100644 --- a/ptx/src/test/spirv_run/rem.spvtxt +++ b/ptx/src/test/spirv_run/rem.spvtxt @@ -18,6 +18,8 @@ %_ptr_Function_uint = OpTypePointer Function %uint %_ptr_Generic_uint = OpTypePointer Generic %uint %ulong_4 = OpConstant %ulong 4 + %uchar = OpTypeInt 8 0 +%_ptr_Generic_uchar = OpTypePointer Generic %uchar %1 = OpFunction %void None %31 %8 = OpFunctionParameter %ulong %9 = OpFunctionParameter %ulong @@ -39,9 +41,11 @@ %12 = OpLoad %uint %23 Aligned 4 OpStore %6 %12 %15 = OpLoad %ulong %4 - %22 = OpIAdd %ulong %15 %ulong_4 - %24 = OpConvertUToPtr %_ptr_Generic_uint %22 - %14 = OpLoad %uint %24 Aligned 4 + %24 = OpConvertUToPtr %_ptr_Generic_uint %15 + %38 = OpBitcast %_ptr_Generic_uchar %24 + %39 = OpInBoundsPtrAccessChain %_ptr_Generic_uchar %38 %ulong_4 + %22 = OpBitcast %_ptr_Generic_uint %39 + %14 = OpLoad %uint %22 Aligned 4 OpStore %7 %14 %17 = OpLoad %uint %6 %18 = OpLoad %uint %7 |