We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f0d5e commit af2c371Copy full SHA for af2c371
1 file changed
numba_cuda/numba/cuda/compiler.py
@@ -891,8 +891,8 @@ def kernel_fixup(kernel, debug):
891
for tm_name, tm_value in type_metadata.operands:
892
if tm_name == "types":
893
types = tm_value
894
- null_metadata = ir.Constant(ir.MetaDataType(), None)
895
- types.operands = (null_metadata,) + types.operands[1:]
+ ret_type = ir.Constant(ir.MetaDataType(), None)
+ types.operands = (ret_type,) + types.operands[1:]
896
if config.DUMP_LLVM:
897
types._clear_string_cache()
898
0 commit comments