From: José Fonseca Date: Thu, 11 Feb 2010 10:08:10 +0000 (+0000) Subject: gallivm: TGSI_OPCODE_CONT is not deprecated. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=128d93a009c493c65f0fa5d220fac3098a54fa14;p=mesa.git gallivm: TGSI_OPCODE_CONT is not deprecated. Note that with FIXME instead of an assertion failure. Addresses fdo 25956. --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index a52c6c50288..2896c522fcf 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -1403,8 +1403,7 @@ emit_instruction( break; case TGSI_OPCODE_CONT: - /* deprecated? */ - assert(0); + /* FIXME */ return 0; break;