From: Ilia Mirkin Date: Sat, 11 Feb 2017 22:20:52 +0000 (-0500) Subject: nv50/ir: add missing break after DSSG X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d1edb01ec677148c393f4f76de2a2c181594e6a;p=mesa.git nv50/ir: add missing break after DSSG Recently broken during int64 addition. Signed-off-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp index a376b1dcc7d..6ad8189c910 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp @@ -4083,6 +4083,7 @@ Converter::handleInstruction(const struct tgsi_full_instruction *insn) mkSplit(&dst0[c], 4, dst); c++; } + break; case TGSI_OPCODE_I64SSG: FOR_EACH_DST_ENABLED_CHANNEL(0, c, tgsi) { src0 = getSSA(8);