mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-03 16:01:38 +00:00
[qfcc] Skip res type/id for void intrinsics
But only for non-extension. I'm not sure it's quite right (as I don't know if all void intrinsics should not have res type/id (all extension instructions *do*)).
This commit is contained in:
parent
5248e5a4ed
commit
9beb0093e6
1 changed files with 4 additions and 1 deletions
|
@ -1843,11 +1843,14 @@ spirv_intrinsic (const expr_t *e, spirvctx_t *ctx)
|
|||
}
|
||||
for (int i = start; i < count; i++) {
|
||||
op_ids[i] = spirv_emit_expr (operands[i], ctx);
|
||||
if (intr.res_type && !is_void (intr.res_type)) {
|
||||
start = 2;
|
||||
}
|
||||
}
|
||||
unsigned tid = type_id (intr.res_type, ctx);
|
||||
unsigned id = spirv_id (ctx);
|
||||
|
||||
auto insn = spirv_new_insn (op, 3 + count, ctx->code_space);
|
||||
auto insn = spirv_new_insn (op, 1 + start + count, ctx->code_space);
|
||||
INSN (insn, 1) = tid;
|
||||
INSN (insn, 2) = id;
|
||||
memcpy (&INSN (insn, 3), op_ids, count * sizeof (op_ids[0]));
|
||||
|
|
Loading…
Reference in a new issue