Francisco Casas (@fcasas) commented about libs/vkd3d-shader/hlsl_codegen.c:
transform_ir(ctx, find_recursive_calls, body, &recursive_call_ctx); vkd3d_free(recursive_call_ctx.backtrace);
- /* Avoid going into an infinite loop when processing them. */
I think that this comment should be more specific, because the "them" may not be immediate clear. Perhaps something like: ```c /* Avoid going into an infinite loop in case a recursive call was detected. */ ```