From: Brian Paul Date: Wed, 2 Jun 2010 20:45:33 +0000 (-0600) Subject: glsl: fix bad sanity-check assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7a156476e4efee8b507461f0af0d867c56723e6e;p=mesa.git glsl: fix bad sanity-check assertion --- diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index 974c4a31315..4d4c611dfe4 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -366,7 +366,7 @@ storage_to_src_reg(struct prog_src_register *src, const slang_ir_storage *st) st0->File = PROGRAM_TEMPORARY; } #endif - assert(st->File < PROGRAM_UNDEFINED); + assert(st->File < PROGRAM_FILE_MAX); src->File = st->File; assert(index >= 0);