From: Kristian H. Kristensen Date: Tue, 16 Oct 2018 21:50:58 +0000 (-0700) Subject: freedreno/a2xx: Squash a compiler warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4222fe8af2b71f47dd076c94f817aa4ea1662963;p=mesa.git freedreno/a2xx: Squash a compiler warning We get a warning here for assigning a const char * pointer to char *swizzle in struct ir2_src_register. The constructor strdups a 4 byte string here, so just memcpy to that instead. Signed-off-by: Kristian H. Kristensen --- diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c b/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c index 7d33aa07a99..156bfc247c2 100644 --- a/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c +++ b/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c @@ -724,8 +724,8 @@ translate_tex(struct fd2_compile_context *ctx, instr = ir2_instr_create_alu_s(ctx->so->ir, RECIP_IEEE); add_dst_reg(ctx, instr, &tmp_dst)->swizzle = "x___"; - add_src_reg(ctx, instr, &inst->Src[0].Register)->swizzle = - swiz[inst->Src[0].Register.SwizzleW]; + memcpy(add_src_reg(ctx, instr, &inst->Src[0].Register)->swizzle, + swiz[inst->Src[0].Register.SwizzleW], 4); instr = ir2_instr_create_alu_v(ctx->so->ir, MULv); add_dst_reg(ctx, instr, &tmp_dst)->swizzle = "xyz_";