LOAD_PAYLOAD instructions need the same treatment as any other
generator instructions, at least FB writes and typed surface messages
will need a payload built with non-zero execution controls.
Reviewed-by: Matt Turner <mattst88@gmail.com>
copy = v->LOAD_PAYLOAD(inst->dst, payload, sources, header_size);
} else {
copy = v->MOV(inst->dst, src);
- copy->force_writemask_all = inst->force_writemask_all;
copy->src[0].negate = negate;
}
+ copy->force_writemask_all = inst->force_writemask_all;
+ copy->force_sechalf = inst->force_sechalf;
assert(copy->regs_written == written);
return copy;